Compilation Warnings
authorKarol Pawlowski <k.pawlowski@samsung.com>
Fri, 15 Mar 2013 16:34:48 +0000 (17:34 +0100)
committerGerrit Code Review <gerrit2@kim11>
Tue, 26 Mar 2013 08:36:13 +0000 (17:36 +0900)
[Issue#]       N/A
[Bug]          Compilation warnings
[Cause]        N/A
[Solution]     Remove them
[Verification] Check buildbot status

Change-Id: Iebaf2b8cf9cb2ec261b188a572728385a5dc286d

modules/utils/src/path.cpp

index 6590e19..d2867d4 100644 (file)
@@ -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)