doc: Fixed parameterized test dumping criterion namespace
This commit is contained in:
parent
952687c4c9
commit
7092a1c5aa
1 changed files with 5 additions and 7 deletions
|
@ -79,6 +79,8 @@
|
|||
*/
|
||||
# define cr_make_param_array(Type, Array, Len, Cleanup) <internal>
|
||||
|
||||
/** @} */
|
||||
|
||||
# ifdef __cplusplus
|
||||
# include <vector>
|
||||
|
||||
|
@ -87,19 +89,15 @@ namespace criterion {
|
|||
/**
|
||||
* Represents a C++ dynamic parameter list for a parameter generator.
|
||||
*
|
||||
* @param Type The type of the array subscript.
|
||||
* @param Array The array of parameters.
|
||||
* @param Len The length of the array.
|
||||
* @param Cleanup The optional cleanup function for the array.
|
||||
* @returns The parameter list.
|
||||
* @ingroup ParameterizedBase
|
||||
*
|
||||
* @param T The type of the parameter.
|
||||
*/
|
||||
template <typename T>
|
||||
using parameters = std::vector<T, criterion::allocator<T>>;
|
||||
}
|
||||
# endif
|
||||
|
||||
/** @} */
|
||||
|
||||
# include "internal/parameterized.h"
|
||||
|
||||
#endif /* !CRITERION_PARAMETERIZED_H_ */
|
||||
|
|
Loading…
Add table
Reference in a new issue