This commit is contained in:
Guolin Ke 2017-08-04 08:26:51 +08:00
Родитель 73e689b783
Коммит 983bd84295
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -324,7 +324,7 @@ inline static std::string ArrayToString(const std::vector<T>& arr, size_t n, cha
template<typename T, bool is_float>
struct __StringToTHelper {
T operator()(const std::string& str) const {
return static_cast<T>(std::stol(str));
return static_cast<T>(std::stoll(str));
}
};