mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-10-23 10:28:11 +08:00
COMP: Use C++11 override directly
The override support in C++11 is required so avoid aliasing this feature. Compilers that do not support the override keyword are no longer supported.
This commit is contained in:

committed by
Hans Johnson

parent
8b31c6f0fd
commit
2853b1cdac
@@ -880,7 +880,7 @@ struct BuiltStyledStreamWriter : public StreamWriter {
|
||||
bool useSpecialFloats,
|
||||
unsigned int precision,
|
||||
PrecisionType precisionType);
|
||||
int write(Value const& root, JSONCPP_OSTREAM* sout) JSONCPP_OVERRIDE;
|
||||
int write(Value const& root, JSONCPP_OSTREAM* sout) override;
|
||||
|
||||
private:
|
||||
void writeValue(Value const& value);
|
||||
|
Reference in New Issue
Block a user