Skip to content

Commit

Permalink
Remove weird semicolons (#24)
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Cruz Viotti <[email protected]>
  • Loading branch information
jviotti authored Jun 1, 2024
1 parent 980db51 commit 23814ee
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/command_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion src/command_validate.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 23814ee

Please sign in to comment.