diff options
author | randomdan <randomdan@localhost> | 2013-08-19 17:36:55 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2013-08-19 17:36:55 +0000 |
commit | 359e8950d8caee0e4c69abf664eb14ae19bb896e (patch) | |
tree | 0c1c21c8652e99ade9d500932674e21c58275fbf /project2/common/exceptions.cpp | |
parent | Allow specifying a custom date format in an XML presenter declaration, used t... (diff) | |
download | project2-359e8950d8caee0e4c69abf664eb14ae19bb896e.tar.bz2 project2-359e8950d8caee0e4c69abf664eb14ae19bb896e.tar.xz project2-359e8950d8caee0e4c69abf664eb14ae19bb896e.zip |
GCC 4.6 compat fix with nothrow default destructors
Diffstat (limited to 'project2/common/exceptions.cpp')
-rw-r--r-- | project2/common/exceptions.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/project2/common/exceptions.cpp b/project2/common/exceptions.cpp index 29b4fa0..1140e96 100644 --- a/project2/common/exceptions.cpp +++ b/project2/common/exceptions.cpp @@ -51,6 +51,10 @@ two_part_error::two_part_error(const std::string & w1, const std::string & w2) : { } +two_part_error::~two_part_error() throw() +{ +} + std::string two_part_error::msg() const throw() { |