Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable MSVC warning in integer_to_hex.hpp
In a function template, MSVC complains about `unsigned -v`, but the referenced line will be never reached if `v` is unsigned, as `v > 0` will be always true. Considered alternative: split write_integer_as_hex into two, and call the correct overload via tag dispatching - but this requires a lot of code duplication.
- Loading branch information