Skip to content

Commit 91a638b

Browse files
committed
BUG: Eliminate override test
1 parent c60983f commit 91a638b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib_json/json_reader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1901,7 +1901,7 @@ class OurCharReader : public CharReader {
19011901
{}
19021902
bool parse(
19031903
char const* beginDoc, char const* endDoc,
1904-
Value* root, std::string* errs) override {
1904+
Value* root, std::string* errs) {
19051905
bool ok = reader_.parse(beginDoc, endDoc, *root, collectComments_);
19061906
if (errs) {
19071907
*errs = reader_.getFormattedErrorMessages();

src/lib_json/json_writer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ struct BuiltStyledStreamWriter : public StreamWriter
837837
std::string const& endingLineFeedSymbol,
838838
bool useSpecialFloats,
839839
unsigned int precision);
840-
int write(Value const& root, std::ostream* sout) override;
840+
int write(Value const& root, std::ostream* sout);
841841
private:
842842
void writeValue(Value const& value);
843843
void writeArrayValue(Value const& value);

0 commit comments

Comments
 (0)