diff options
author | Matthias P. Braendli (think) <matthias@mpb.li> | 2013-11-10 18:25:04 +0100 |
---|---|---|
committer | Matthias P. Braendli (think) <matthias@mpb.li> | 2013-11-10 18:25:04 +0100 |
commit | 4f9a01a80570437b86e69eb0542b13df9a20743d (patch) | |
tree | 46790dc24b0f3ca78acffba46e3e6633901903dc /src/RemoteControl.h | |
parent | f0fbd5f88e5dbe6b0168082eed103aa003b1221a (diff) | |
download | dabmod-4f9a01a80570437b86e69eb0542b13df9a20743d.tar.gz dabmod-4f9a01a80570437b86e69eb0542b13df9a20743d.tar.bz2 dabmod-4f9a01a80570437b86e69eb0542b13df9a20743d.zip |
dabmod: add file input to separate class, change version
Diffstat (limited to 'src/RemoteControl.h')
-rw-r--r-- | src/RemoteControl.h | 2 |
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_; |