Browse Source

fixed android build

pull/690/head
orignal 8 years ago
parent
commit
a8a4ef82cd
  1. 5
      util.h

5
util.h

@ -15,6 +15,11 @@ std::string to_string(T value)
{ {
return boost::lexical_cast<std::string>(value); return boost::lexical_cast<std::string>(value);
} }
inline int stoi(const std::string& str)
{
return boost::lexical_cast<int>(str);
}
} }
#endif #endif

Loading…
Cancel
Save