1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-04-30 04:33:53 +00:00

Slighly more explicit return value

This commit is contained in:
Henry Fredrick Schreiner 2017-02-01 09:29:55 -05:00
parent 2fd6a32c9f
commit 1df5d9db93

View File

@ -277,7 +277,7 @@ inline std::tuple<std::vector<std::string>,std::vector<std::string>> get_names(c
}
}
return {short_names, long_names};
return std::tuple<std::vector<std::string>,std::vector<std::string>>(short_names, long_names);
}