Fix VS warnings

These don't really need to be const.

resolves #369
This commit is contained in:
Christopher Dunn 2015-09-28 17:04:23 -05:00
parent 6992831c1c
commit dc5aa4ad7f

View File

@ -43,7 +43,7 @@ public:
~Exception() throw() override;
char const* what() const throw() override;
protected:
std::string const msg_;
std::string msg_;
};
/** Exceptions which the user cannot easily avoid.