doc: Fixed parameterized test dumping criterion namespace

This commit is contained in:
Snaipe 2016-04-10 16:36:35 +02:00
parent 952687c4c9
commit 7092a1c5aa
1 changed files with 5 additions and 7 deletions

View File

@ -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_ */