From dc5aa4ad7f7d5f44b9e2bc86a63c7dff26314904 Mon Sep 17 00:00:00 2001 From: Christopher Dunn Date: Mon, 28 Sep 2015 17:04:23 -0500 Subject: [PATCH] Fix VS warnings These don't really need to be const. resolves #369 --- include/json/value.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ 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.