From 16ff91b60b201bde0c18aff0a4aa35e839eba613 Mon Sep 17 00:00:00 2001 From: NippunSharma Date: Tue, 26 Jan 2021 21:58:03 +0530 Subject: [PATCH] made definition of TUPLE_TYPE inline --- src/mlpack/core/util/param.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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