From 8b693308047c0bee740737c4db52ca472496c499 Mon Sep 17 00:00:00 2001 From: Patrick Boettcher Date: Wed, 28 Dec 2016 16:45:30 +0100 Subject: [PATCH] app: add a default format-checker - which is always happy --- app/json-schema-validate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/json-schema-validate.cpp b/app/json-schema-validate.cpp index f643dc7..7f5ca0d 100644 --- a/app/json-schema-validate.cpp +++ b/app/json-schema-validate.cpp @@ -80,7 +80,7 @@ int main(int argc, char *argv[]) } // 2) create the validator and - json_validator validator(loader); + json_validator validator(loader, [](const std::string&, const std::string&){}); try { // insert this schema as the root to the validator