-
Notifications
You must be signed in to change notification settings - Fork 167
Added template overloads for integer_times_pow10()
#328
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added template overloads for integer_times_pow10()
#328
Conversation
The build error under C++23 might be fixed with #332 |
@toughengineer We have a build error when using C++23. I have #332 as a potential fix. |
Cherry-picked the change. |
865bd65
to
fd98fd6
Compare
Redid the change, including clang format, but the lint still fails for some reason. |
clang-format is version specific that's why we run it in a docker container. To get the same format you need to use the exact same clang-format version. No matter. It is non blocking for pull requests. |
Since the question was raised in #320, I added template overloads for
integer_times_pow10()
.Usage:
Things to pay attention to:
Will add some docs to README later.