commit | dc5aa4ad7f7d5f44b9e2bc86a63c7dff26314904 | [log] [tgz] |
---|---|---|
author | Christopher Dunn <cdunn2001@gmail.com> | Mon Sep 28 17:04:23 2015 -0500 |
committer | Christopher Dunn <cdunn2001@gmail.com> | Mon Sep 28 17:05:57 2015 -0500 |
tree | d05917e052b4204d11fca7a51706914834480b6b | |
parent | 6992831c1c351aafb0403cebbd18b967a29c094a [diff] [blame] |
Fix VS warnings These don't really need to be const. resolves #369
diff --git a/include/json/value.h b/include/json/value.h index 1ab22ef..237aa53 100644 --- a/include/json/value.h +++ b/include/json/value.h
@@ -43,7 +43,7 @@ ~Exception() throw() override; char const* what() const throw() override; protected: - std::string const msg_; + std::string msg_; }; /** Exceptions which the user cannot easily avoid.