aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-05-16 18:57:36 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-05-16 18:57:36 +0300
commit16933c951386a563971149d2beb3dc2147a0db8e (patch)
treeb458a9e2efdb37f7998c9e5e1e0970dcaa8eddd1 /include
parentremove VS 2013 cruft (diff)
downloadwinapi-common-16933c951386a563971149d2beb3dc2147a0db8e.tar.gz
winapi-common-16933c951386a563971149d2beb3dc2147a0db8e.zip
clang-tidy fixes
Diffstat (limited to 'include')
-rw-r--r--include/winapi/cmd_line.hpp4
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&);