From 4f9a01a80570437b86e69eb0542b13df9a20743d Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli (think)" Date: Sun, 10 Nov 2013 18:25:04 +0100 Subject: dabmod: add file input to separate class, change version --- src/RemoteControl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/RemoteControl.h') diff --git a/src/RemoteControl.h b/src/RemoteControl.h index 17352bf..79b330f 100644 --- a/src/RemoteControl.h +++ b/src/RemoteControl.h @@ -59,7 +59,7 @@ class ParameterError : public std::exception public: ParameterError(string message) : message_(message) {} ~ParameterError() throw() {}; - const char* what() { return message_.c_str(); } + const char* what() const throw() { return message_.c_str(); } private: string message_; -- cgit v1.2.3