Skip to content

Commit dc5aa4a

Browse files
committed
Fix VS warnings
These don't really need to be const. resolves open-source-parsers#369
1 parent 6992831 commit dc5aa4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/json/value.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class JSON_API Exception : public std::exception {
4343
~Exception() throw() override;
4444
char const* what() const throw() override;
4545
protected:
46-
std::string const msg_;
46+
std::string msg_;
4747
};
4848

4949
/** Exceptions which the user cannot easily avoid.

0 commit comments

Comments
 (0)