summaryrefslogtreecommitdiffstats
path: root/src/RemoteControl.h
diff options
context:
space:
mode:
authorMatthias P. Braendli (think) <matthias@mpb.li>2013-11-10 18:25:04 +0100
committerMatthias P. Braendli (think) <matthias@mpb.li>2013-11-10 18:25:04 +0100
commit4f9a01a80570437b86e69eb0542b13df9a20743d (patch)
tree46790dc24b0f3ca78acffba46e3e6633901903dc /src/RemoteControl.h
parentf0fbd5f88e5dbe6b0168082eed103aa003b1221a (diff)
downloaddabmod-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.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_;