From 1df5d9db932e24f021be8dfcc00e76c411b469b4 Mon Sep 17 00:00:00 2001 From: Henry Fredrick Schreiner Date: Wed, 1 Feb 2017 09:29:55 -0500 Subject: [PATCH] Slighly more explicit return value --- include/CLI.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/CLI.hpp b/include/CLI.hpp index 37c2cd4a..caf2db93 100644 --- a/include/CLI.hpp +++ b/include/CLI.hpp @@ -277,7 +277,7 @@ inline std::tuple,std::vector> get_names(c } } - return {short_names, long_names}; + return std::tuple,std::vector>(short_names, long_names); }