From 7092e45d7a45e5b1226a217530e1c981d1d933db Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Mon, 21 Sep 2015 15:41:02 +1000 Subject: [PATCH] library: make path constructors explicit --- library_posix.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library_posix.hpp b/library_posix.hpp index c9e4a8a2..3a4e2134 100644 --- a/library_posix.hpp +++ b/library_posix.hpp @@ -23,8 +23,8 @@ namespace util { namespace detail { class library_posix { public: - library_posix (const char *path); - library_posix (const std::string &path); + explicit library_posix (const char *path); + explicit library_posix (const std::string &path); library_posix (library_posix&&); ~library_posix ();