diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2014-10-20 23:22:56 +0000 |
---|---|---|
committer | andreas <andreas@daaaf23c-2e50-4459-9457-1e69db5a47bf> | 2014-10-20 23:22:56 +0000 |
commit | c654793a3a513a9c8ffcd1aa9c3962b6a72e61bd (patch) | |
tree | 7f54a352a0c196dc85a3262783bb95183d3b1d40 /src/core/script/ScriptEngine.hpp | |
parent | 25fb41044ca080b794cbf4e85ff10e74e571ea24 (diff) |
started to implement Function class which represents functions and methods, both on the host and the client side
git-svn-id: file:///var/local/svn/basicwriter@73 daaaf23c-2e50-4459-9457-1e69db5a47bf
Diffstat (limited to 'src/core/script/ScriptEngine.hpp')
-rw-r--r-- | src/core/script/ScriptEngine.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/script/ScriptEngine.hpp b/src/core/script/ScriptEngine.hpp index 3a53791..5443460 100644 --- a/src/core/script/ScriptEngine.hpp +++ b/src/core/script/ScriptEngine.hpp @@ -67,7 +67,7 @@ public: /** * Returns the error message. */ - virtual const char* what() const noexcept; + virtual const char* what() const noexcept override; }; |