Fix explicit conversion to string

This commit is contained in:
Matthias Deimbacher 2022-06-02 10:57:55 +02:00 committed by Patrick Boettcher
parent 8e4751f6f7
commit 0d563960cd

View File

@ -216,7 +216,7 @@ public:
// //
// an unknown keyword can only be referenced by a json-pointer, // an unknown keyword can only be referenced by a json-pointer,
// not by a plain name fragment // not by a plain name fragment
if (uri.pointer() != "") { if (uri.pointer().to_string() != "") {
try { try {
auto &subschema = file.unknown_keywords.at(uri.pointer()); // null is returned if not existing auto &subschema = file.unknown_keywords.at(uri.pointer()); // null is returned if not existing
auto s = schema::make(subschema, this, {}, {{uri}}); // A JSON Schema MUST be an object or a boolean. auto s = schema::make(subschema, this, {}, {{uri}}); // A JSON Schema MUST be an object or a boolean.