From 7b60d342d97726d9a588bf57a61920eac8b1bd2e Mon Sep 17 00:00:00 2001 From: Karol Pawlowski Date: Fri, 15 Mar 2013 17:34:48 +0100 Subject: [PATCH] Compilation Warnings [Issue#] N/A [Bug] Compilation warnings [Cause] N/A [Solution] Remove them [Verification] Check buildbot status Change-Id: Iebaf2b8cf9cb2ec261b188a572728385a5dc286d --- modules/utils/src/path.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/utils/src/path.cpp b/modules/utils/src/path.cpp index 6590e19..d2867d4 100644 --- a/modules/utils/src/path.cpp +++ b/modules/utils/src/path.cpp @@ -250,16 +250,19 @@ Path Path::operator/(const char * part) const Path & Path::operator/=(const DPL::String& part) { Append(ToUTF8String(part)); + return *this; } Path & Path::operator/=(const std::string& part) { Append(part); + return *this; } Path & Path::operator/=(const char * part) { Append(std::string(part)); + return *this; } void Path::Append(const std::string& part) -- 2.7.4