Second try to fix build

This commit is contained in:
Konstantin Rudenskii 2021-06-04 00:17:51 +03:00
parent b00c3d8f5a
commit 04daa9b5ed

View File

@ -41,7 +41,7 @@ struct DummyJSONParser
Object getObject() const { return {}; }
Element getElement() { return {}; }
std::ostream & operator<<(std::ostream & os) { return os; }
std::ostream & operator<<(std::ostream & os) const { return os; }
};
/// References an array in a JSON document.
@ -100,4 +100,9 @@ struct DummyJSONParser
#endif
};
ALWAYS_INLINE std::ostream& operator<<(std::ostream& out, DummyJSONParser::Element)
{
return out;
}
}