gul-cpp / gul14

General Utility Library for C++14
https://gul14.info/
GNU Lesser General Public License v2.1
2 stars 1 forks source link

Cleanup/fix conversion warnings in to number #35

Closed alt-graph closed 1 year ago

alt-graph commented 1 year ago

Fix a few "implicit conversion" warnings in to_number

[why] Compiling with -Wshadow reveals several implicit conversions.

[how] In these cases, the conversions actually appear to be fine because appropriate checks are done before. Therefore, adding a few static_casts is enough to fix the warnings.