improve coverage

This commit is contained in:
Niels Lohmann 2020-07-24 09:32:03 +02:00
parent b315fe484a
commit 33662417c1
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
3 changed files with 17 additions and 10 deletions

View file

@ -1434,7 +1434,7 @@ class binary_writer
return 'L';
}
// anything else is treated as high-precision number
return 'H';
return 'H'; // LCOV_EXCL_LINE
}
case value_t::number_unsigned:
@ -1460,7 +1460,7 @@ class binary_writer
return 'L';
}
// anything else is treated as high-precision number
return 'H';
return 'H'; // LCOV_EXCL_LINE
}
case value_t::number_float: