mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
Second try to fix build
This commit is contained in:
parent
b00c3d8f5a
commit
04daa9b5ed
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user