]> git.tdb.fi Git - libs/core.git/commitdiff
Bugfixes
authorMikko Rasa <tdb@tdb.fi>
Fri, 7 Dec 2007 18:06:33 +0000 (18:06 +0000)
committerMikko Rasa <tdb@tdb.fi>
Fri, 7 Dec 2007 18:06:33 +0000 (18:06 +0000)
source/core/except.h

index a18e028730aedddac1d044de1b98b4fa36edea21..5dfbe8d03d56d56ac8a879eddc696dbb866670e5 100644 (file)
@@ -46,8 +46,9 @@ class KeyError: public Exception
 {
 public:
        KeyError(const std::string &w_): Exception(w_) { }
-       KeyError(const std::string &w_, const std::string &k) { }
+       KeyError(const std::string &w_, const std::string &k);
        const std::string &get_key() const { return key; }
+       ~KeyError() throw() { }
 private:
        std::string key;
 };