mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Replace usage of long long with u64/s64
This commit is contained in:
parent
7cac34c807
commit
18577f2527
7 changed files with 16 additions and 13 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue