diff options
author | Mattes D <github@xoft.cz> | 2014-10-28 00:44:48 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-10-28 00:44:48 +0100 |
commit | 2d7cbfe620d2cac160a6e9729369f64ed90244f1 (patch) | |
tree | ee2cd2bde36537739c593293f4f1c7f7e7d72559 /src/IniFile.cpp | |
parent | Fixed typo. (diff) | |
parent | Fixed compile (typos). (diff) | |
download | cuberite-2d7cbfe620d2cac160a6e9729369f64ed90244f1.tar cuberite-2d7cbfe620d2cac160a6e9729369f64ed90244f1.tar.gz cuberite-2d7cbfe620d2cac160a6e9729369f64ed90244f1.tar.bz2 cuberite-2d7cbfe620d2cac160a6e9729369f64ed90244f1.tar.lz cuberite-2d7cbfe620d2cac160a6e9729369f64ed90244f1.tar.xz cuberite-2d7cbfe620d2cac160a6e9729369f64ed90244f1.tar.zst cuberite-2d7cbfe620d2cac160a6e9729369f64ed90244f1.zip |
Diffstat (limited to 'src/IniFile.cpp')
-rw-r--r-- | src/IniFile.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/IniFile.cpp b/src/IniFile.cpp index a666a4ff8..ded7e4199 100644 --- a/src/IniFile.cpp +++ b/src/IniFile.cpp @@ -9,7 +9,7 @@ // Email: Shane.Hill@dsto.defence.gov.au // Reason: Remove dependancy on MFC. Code should compile on any // platform. -////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////////// /* !! MODIFIED BY FAKETRUTH and xoft !! @@ -79,7 +79,7 @@ bool cIniFile::ReadFile(const AString & a_FileName, bool a_AllowExampleRedirect) } } - bool IsFirstLine = true; + bool IsFirstLine = true; while (getline(f, line)) { @@ -866,7 +866,7 @@ AString cIniFile::CheckCase(const AString & s) const void cIniFile::RemoveBom(AString & a_line) const { - // The BOM sequence for UTF-8 is 0xEF,0xBB,0xBF + // The BOM sequence for UTF-8 is 0xEF, 0xBB, 0xBF static unsigned const char BOM[] = { 0xEF, 0xBB, 0xBF }; // The BOM sequence, if present, is always th e first three characters of the input. |