aboutsummaryrefslogtreecommitdiff
path: root/include/convto.h
Commit message (Expand)AuthorAgeFilesLines
* Add overloads for ConvToNum to prevent (unsigned) char weirdness.Gravatar Peter Powell2019-01-281-0/+16
* Fix conversion issues by replacing ConvToInt with ConvToNum<T>.•••The former was a thin wrapper around atol and brought with it all of the weird parsing logic of atol which is almost never what is actually wanted. It also almost never returned the numeric type which is actually wanted which can cause weird issues when casting. Gravatar Peter Powell2018-12-121-10/+1
* Fix a ton of -Wsign-conversion warnings.Gravatar Peter Powell2017-11-171-2/+2
* Add no-op ConvToStr(const std::string&)Gravatar Attila Molnar2016-02-251-0/+5
* Move implementation of ConvTo*() and related functions into convto.hGravatar Attila Molnar2016-02-251-0/+105