Core/Server: Add missing overrides

This commit is contained in:
DDuarte
2014-08-09 20:17:40 +01:00
parent 272b9d3d16
commit a394205eca
80 changed files with 656 additions and 656 deletions

View File

@@ -40,7 +40,7 @@ class ByteBufferException : public std::exception
public:
~ByteBufferException() throw() { }
char const* what() const throw() { return msg_.c_str(); }
char const* what() const throw() override { return msg_.c_str(); }
protected:
std::string & message() throw() { return msg_; }