diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-16 18:57:36 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-16 18:57:36 +0300 |
commit | 16933c951386a563971149d2beb3dc2147a0db8e (patch) | |
tree | b458a9e2efdb37f7998c9e5e1e0970dcaa8eddd1 /include | |
parent | remove VS 2013 cruft (diff) | |
download | winapi-common-16933c951386a563971149d2beb3dc2147a0db8e.tar.gz winapi-common-16933c951386a563971149d2beb3dc2147a0db8e.zip |
clang-tidy fixes
Diffstat (limited to 'include')
-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&); |