From 29ca22905b76eb6640128afa8a19d76290774d33 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 22 Mar 2017 19:32:07 -0400 Subject: [PATCH] IniFile: Replace a character erase with pop_back() Same thing, more straightforward. --- Source/Core/Common/IniFile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Common/IniFile.cpp b/Source/Core/Common/IniFile.cpp index 8877d0f61d..1543d0f96f 100644 --- a/Source/Core/Common/IniFile.cpp +++ b/Source/Core/Common/IniFile.cpp @@ -427,9 +427,9 @@ bool IniFile::Load(const std::string& filename, bool keep_current_data) #ifndef _WIN32 // Check for CRLF eol and convert it to LF - if (!line.empty() && line.at(line.size() - 1) == '\r') + if (!line.empty() && line.back() == '\r') { - line.erase(line.size() - 1); + line.pop_back(); } #endif