* Overload to make the compiler happy while it is instantiating * dump_integer for number_unsigned_t. * Must never be called. */
| 18860 | * Must never be called. |
| 18861 | */ |
| 18862 | number_unsigned_t remove_sign(number_unsigned_t x) |
| 18863 | { |
| 18864 | JSON_ASSERT(false); // NOLINT(cert-dcl03-c,hicpp-static-assert,misc-static-assert) LCOV_EXCL_LINE |
| 18865 | return x; // LCOV_EXCL_LINE |
| 18866 | } |
| 18867 | |
| 18868 | /* |
| 18869 | * Helper function for dump_integer |