From e4f810d69725813dfebc567cc54c8eb94162554d Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Fri, 31 May 2024 15:22:37 -0300 Subject: [PATCH] Remove weird semicolons Signed-off-by: Juan Cruz Viotti --- src/command_test.cc | 1 - src/command_validate.cc | 1 - 2 files changed, 2 deletions(-) diff --git a/src/command_test.cc b/src/command_test.cc index 6085d232..a4584ff5 100644 --- a/src/command_test.cc +++ b/src/command_test.cc @@ -47,7 +47,6 @@ auto intelligence::jsonschema::cli::test( if (metaschema_result) { log_verbose(options) << "The schema is valid with respect to its metaschema\n"; - ; } else { std::cerr << "The schema is NOT valid with respect to its metaschema\n"; return EXIT_FAILURE; diff --git a/src/command_validate.cc b/src/command_validate.cc index 3eff442a..7e2068f8 100644 --- a/src/command_validate.cc +++ b/src/command_validate.cc @@ -31,7 +31,6 @@ auto intelligence::jsonschema::cli::validate( if (metaschema_result) { log_verbose(options) << "The schema is valid with respect to its metaschema\n"; - ; } else { std::cerr << "The schema is NOT valid with respect to its metaschema\n"; return EXIT_FAILURE;