1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-12 16:15:20 +02:00

Replace usage of long long with u64/s64

This commit is contained in:
ShadowNinja
2014-03-12 19:37:19 -04:00
parent 7cac34c807
commit 18577f2527
7 changed files with 16 additions and 13 deletions

View File

@@ -165,7 +165,7 @@ inline s32 mystoi(const std::string &s, s32 min, s32 max)
inline s64 stoi64(const std::string &s) {
std::stringstream tmp(s);
long long t;
s64 t;
tmp >> t;
return t;
}