diff options
Diffstat (limited to 'raul/Path.hpp')
-rw-r--r-- | raul/Path.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/raul/Path.hpp b/raul/Path.hpp index dd53ee5..960a8e1 100644 --- a/raul/Path.hpp +++ b/raul/Path.hpp @@ -45,7 +45,7 @@ class Path : public URI { public: class BadPath : public std::exception { public: - BadPath(const std::string& path) : _path(path) {} + explicit BadPath(const std::string& path) : _path(path) {} ~BadPath() throw() {} const char* what() const throw() { return _path.c_str(); } private: |