summaryrefslogtreecommitdiffstats
path: root/src/IniFile.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-11-04 15:45:08 +0100
committerMattes D <github@xoft.cz>2014-11-04 15:45:08 +0100
commit6201b3602c2f82fd9de68404a9e742c9cf3c6554 (patch)
treee086038a40a07eba6be7a10a18f9cc95527fc729 /src/IniFile.cpp
parentMoved the chrono include into Globals. (diff)
parentWebAdmin: Fixed login template destination address. (diff)
downloadcuberite-6201b3602c2f82fd9de68404a9e742c9cf3c6554.tar
cuberite-6201b3602c2f82fd9de68404a9e742c9cf3c6554.tar.gz
cuberite-6201b3602c2f82fd9de68404a9e742c9cf3c6554.tar.bz2
cuberite-6201b3602c2f82fd9de68404a9e742c9cf3c6554.tar.lz
cuberite-6201b3602c2f82fd9de68404a9e742c9cf3c6554.tar.xz
cuberite-6201b3602c2f82fd9de68404a9e742c9cf3c6554.tar.zst
cuberite-6201b3602c2f82fd9de68404a9e742c9cf3c6554.zip
Diffstat (limited to 'src/IniFile.cpp')
-rw-r--r--src/IniFile.cpp6
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.