diff options
author | Mattes D <github@xoft.cz> | 2014-08-29 10:20:23 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-08-29 10:20:23 +0200 |
commit | 42570cbeef6a3634f56c54008277c395edaa041e (patch) | |
tree | 6c4955a7af5470f2727daef9406c03593eb44d8e /src/StringUtils.h | |
parent | Hotfixed recipe.txt loading. (diff) | |
download | cuberite-42570cbeef6a3634f56c54008277c395edaa041e.tar cuberite-42570cbeef6a3634f56c54008277c395edaa041e.tar.gz cuberite-42570cbeef6a3634f56c54008277c395edaa041e.tar.bz2 cuberite-42570cbeef6a3634f56c54008277c395edaa041e.tar.lz cuberite-42570cbeef6a3634f56c54008277c395edaa041e.tar.xz cuberite-42570cbeef6a3634f56c54008277c395edaa041e.tar.zst cuberite-42570cbeef6a3634f56c54008277c395edaa041e.zip |
Diffstat (limited to '')
-rw-r--r-- | src/StringUtils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/StringUtils.h b/src/StringUtils.h index c48ca6051..72a90a8c2 100644 --- a/src/StringUtils.h +++ b/src/StringUtils.h @@ -101,7 +101,7 @@ extern void SetBEInt(char * a_Mem, Int32 a_Value); /// Parses any integer type. Checks bounds and returns errors out of band. template <class T> -bool StringToInteger(const AString& a_str, T& a_Num) +bool StringToInteger(const AString & a_str, T & a_Num) { size_t i = 0; bool positive = true; |