richelbilderbeek / djog_unos_2018

Project by the Uno's at DJOG 2018-2019: Nature Zen
GNU General Public License v3.0
6 stars 2 forks source link

Don't use function std::stoi (fix appveyor) #529

Closed DynCoder closed 5 years ago

DynCoder commented 5 years ago

Currently all of our appveyor builds are failing, this is because appveyor doesn't know what std::stoi is. I wan't appveyor back for quick (secondary) testing, testing on windows and testing in release mode.

Find out a way to fix appveyor by for example:

if you are going to create you own function, i recommend taking the string, breaking it into pieces (chars) and change each char to a int with ascii values.

robkruger commented 5 years ago

I'm already working on the first alternative.

Edit: Wait I already fixed it, my appveyor passes.

DynCoder commented 5 years ago

mine too, this is thus fixed