diff options
Diffstat (limited to 'include/winapi')
-rw-r--r-- | include/winapi/cmd_line.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/winapi/cmd_line.hpp b/include/winapi/cmd_line.hpp index d635350..8735660 100644 --- a/include/winapi/cmd_line.hpp +++ b/include/winapi/cmd_line.hpp @@ -27,9 +27,7 @@ public: explicit CommandLine(std::string&& argv0, std::vector<std::string>&& args = {}) : m_argv0{std::move(argv0)}, m_args{std::move(args)} {} - explicit CommandLine(const std::vector<std::string>& argv); - - explicit CommandLine(std::vector<std::string>&& argv); + explicit CommandLine(std::vector<std::string> argv); static std::string escape(const std::string&); |