* Overload to make the compiler happy while it is instantiating * dump_integer for number_unsigned_t. * Must never be called. */
| 17331 | * Must never be called. |
| 17332 | */ |
| 17333 | number_unsigned_t remove_sign(number_unsigned_t x) |
| 17334 | { |
| 17335 | JSON_ASSERT(false); // NOLINT(cert-dcl03-c,hicpp-static-assert,misc-static-assert) LCOV_EXCL_LINE |
| 17336 | return x; // LCOV_EXCL_LINE |
| 17337 | } |
| 17338 | |
| 17339 | /* |
| 17340 | * Helper function for dump_integer |