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.