Searched defs:ParsingError (Results 1 – 3 of 3) sorted by relevance
20 struct ParsingError { struct21 std::string message;22 std::string key;23 …bool operator==(const ParsingError& rhs) const { return message == rhs.message && key == rhs.key; } in operator ==()
87 [](const ParsingError&) -> variant<std::nullptr_t, const Interpolate*, const Step*> { in findZoomCurveChecked()
16 class ParsingError(BaseException): class