Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2012-06-02 15:53:15 +0400
committerUnderground78 <underground78@users.sourceforge.net>2012-06-02 15:53:15 +0400
commitddcfe82895fa59ec07692a972931a0e0ae4196b7 (patch)
treeb551f3b98c6951c387f7eb02b5903e3ca3062859 /src/DSUtil/text.cpp
parent095b3d0e65730e1d31733a403fff4787cb674429 (diff)
Cosmetics: make the return statements consistent.
Patch partially by XhmikosR. git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4978 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/DSUtil/text.cpp')
-rw-r--r--src/DSUtil/text.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DSUtil/text.cpp b/src/DSUtil/text.cpp
index 5bded09c2..18803ec9a 100644
--- a/src/DSUtil/text.cpp
+++ b/src/DSUtil/text.cpp
@@ -87,7 +87,7 @@ CString Implode(CAtlList<CString>& sl, TCHAR sep)
ret += sl.GetNext(pos);
if (pos) ret += sep;
}
- return(ret);
+ return ret;
}
*/
@@ -234,7 +234,7 @@ CString ExtractTag(CString tag, CMapStringToString& attribs, bool& fClosing)
tag = i+1 < tag.GetLength() ? tag.Mid(i+1) : _T("");
}
- return(type);
+ return type;
}
CAtlList<CString>& MakeLower(CAtlList<CString>& sl)