diff options
-rw-r--r-- | include/winapi/cmd_line.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/winapi/cmd_line.hpp b/include/winapi/cmd_line.hpp index f19d6b9..025b09a 100644 --- a/include/winapi/cmd_line.hpp +++ b/include/winapi/cmd_line.hpp @@ -168,10 +168,10 @@ private: return safe; } - CommandLine(std::vector<std::string>&& args) : args{std::move(args)} {} + CommandLine(std::vector<std::string>&& args) : args(std::move(args)) {} CommandLine(std::string&& argv0, std::vector<std::string>&& args = {}) - : argv0{std::move(argv0)}, args{std::move(args)} {} + : argv0(std::move(argv0)), args(std::move(args)) {} const std::string argv0; const std::vector<std::string> args; |