1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-31 10:24:23 +03:00

Add coverage exclusion comments, as requested

Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
This commit is contained in:
Ferry Huberts
2021-08-13 15:30:55 +02:00
parent 95b73bcd01
commit 364a21be6b
3 changed files with 17 additions and 17 deletions

View File

@ -119,7 +119,7 @@ class binary_reader
result = parse_ubjson_internal();
break;
case input_format_t::json:
case input_format_t::json: // LCOV_EXCL_LINE
default: // LCOV_EXCL_LINE
JSON_ASSERT(false); // NOLINT(cert-dcl03-c,hicpp-static-assert,misc-static-assert) LCOV_EXCL_LINE
}
@ -2453,7 +2453,7 @@ class binary_reader
error_msg += "BSON";
break;
case input_format_t::json:
case input_format_t::json: // LCOV_EXCL_LINE
default: // LCOV_EXCL_LINE
JSON_ASSERT(false); // NOLINT(cert-dcl03-c,hicpp-static-assert,misc-static-assert) LCOV_EXCL_LINE
}