* Overload to make the compiler happy while it is instantiating * dump_integer for number_unsigned_t. * Must never be called. */
| 18946 | * Must never be called. |
| 18947 | */ |
| 18948 | number_unsigned_t remove_sign(number_unsigned_t x) |
| 18949 | { |
| 18950 | JSON_ASSERT(false); // NOLINT(cert-dcl03-c,hicpp-static-assert,misc-static-assert) LCOV_EXCL_LINE |
| 18951 | return x; // LCOV_EXCL_LINE |
| 18952 | } |
| 18953 | |
| 18954 | /* |
| 18955 | * Helper function for dump_integer |