diff --git a/src/mlpack/core/util/param.hpp b/src/mlpack/core/util/param.hpp index 208ca64b2f..c820df4b65 100644 --- a/src/mlpack/core/util/param.hpp +++ b/src/mlpack/core/util/param.hpp @@ -1013,9 +1013,9 @@ using DatasetInfo = DatasetMapper; * collisions are still possible, and they produce bizarre error messages. See * https://github.com/mlpack/mlpack/issues/100 for more information. */ -#define TUPLE_TYPE std::tuple #define PARAM_MATRIX_AND_INFO_IN(ID, DESC, ALIAS) \ - PARAM_IN(TUPLE_TYPE, ID, DESC, ALIAS, TUPLE_TYPE(), false) + PARAM_IN(std::tuple, ID, DESC, \ + ALIAS, std::tuple(), false) /** * Define an input model. From the command line, the user can specify the file