Roulette GOW Complie erro

08/05/2016 21:17 sonbaotvk#1
Im add Roulette system of GOW ERENDORA but complie erro , help me fix pls


problem


Full lottery.cpp

08/07/2016 14:27 Capt. Jack#2
try this as iteratortype:
Code:
map<std::string, int>::iterator it = CScript::m_defines.find(s.token);
with C++11 or C++14 you can use
Code:
auto it = CScript::m_defines.find(s.token);