summaryrefslogtreecommitdiffstats
path: root/raul/Configuration.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/Configuration.hpp')
-rw-r--r--raul/Configuration.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/raul/Configuration.hpp b/raul/Configuration.hpp
index 7780b85..e26de9d 100644
--- a/raul/Configuration.hpp
+++ b/raul/Configuration.hpp
@@ -49,7 +49,7 @@ public:
void print_usage(const std::string& program, std::ostream& os);
struct CommandLineError : public std::exception {
- CommandLineError(const std::string& m) : msg(m) {}
+ explicit CommandLineError(const std::string& m) : msg(m) {}
~CommandLineError() throw() {}
const char* what() const throw() { return msg.c_str(); }
std::string msg;