Commit 1df5d9db932e24f021be8dfcc00e76c411b469b4

Authored by Henry Fredrick Schreiner
1 parent 2fd6a32c

Slighly more explicit return value

Showing 1 changed file with 1 additions and 1 deletions
include/CLI.hpp
... ... @@ -277,7 +277,7 @@ inline std::tuple<std::vector<std::string>,std::vector<std::string>> get_names(c
277 277 }
278 278 }
279 279  
280   - return {short_names, long_names};
  280 + return std::tuple<std::vector<std::string>,std::vector<std::string>>(short_names, long_names);
281 281  
282 282 }
283 283  
... ...