summaryrefslogtreecommitdiffstats
path: root/src/RemoteControl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/RemoteControl.h')
-rw-r--r--src/RemoteControl.h2
1 files changed, 1 insertions, 1 deletions
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_;