Closed TedLyngmo closed 2 months ago
Made it possible to compile with -Wshadow -Wconversion -Wcast-qual -Wsign-conversion. Silenced the warnings that would pop up with a static_cast.
-Wshadow -Wconversion -Wcast-qual -Wsign-conversion
static_cast
The chrono conversion warning that would pop up was silenced by staying within the chrono domain instead of doing a cast.
chrono
Thanks again!
Regards
Made it possible to compile with
-Wshadow -Wconversion -Wcast-qual -Wsign-conversion
. Silenced the warnings that would pop up with astatic_cast
.The
chrono
conversion warning that would pop up was silenced by staying within thechrono
domain instead of doing a cast.