* Overload to make the compiler happy while it is instantiating * dump_integer for number_unsigned_t. * Must never be called. */
| 18822 | * Must never be called. |
| 18823 | */ |
| 18824 | number_unsigned_t remove_sign(number_unsigned_t x) |
| 18825 | { |
| 18826 | JSON_ASSERT(false); // NOLINT(cert-dcl03-c,hicpp-static-assert,misc-static-assert) LCOV_EXCL_LINE |
| 18827 | return x; // LCOV_EXCL_LINE |
| 18828 | } |
| 18829 | |
| 18830 | /* |
| 18831 | * Helper function for dump_integer |