From 18577f25277f269c8dd8d2bdcaaccbac72d9370d Mon Sep 17 00:00:00 2001 From: ShadowNinja Date: Wed, 12 Mar 2014 19:37:19 -0400 Subject: Replace usage of long long with u64/s64 --- src/util/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/util/string.h') diff --git a/src/util/string.h b/src/util/string.h index 9bb89f14a..bed66417e 100644 --- a/src/util/string.h +++ b/src/util/string.h @@ -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; } -- cgit v1.2.3