From: Mikko Rasa Date: Sat, 31 Mar 2012 10:51:58 +0000 (+0300) Subject: Remove a useless path-to-string conversion X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=0c83b922e56976a30506d9f8d43c9dcd38d573b5;p=builder.git Remove a useless path-to-string conversion --- diff --git a/source/install.cpp b/source/install.cpp index f0cce23..bfda555 100644 --- a/source/install.cpp +++ b/source/install.cpp @@ -89,5 +89,5 @@ FS::Path Install::generate_target_path(const FileTarget &tgt, const std::string if(mid.empty()) throw invalid_argument("Don't know where to install "+tgtname); - return (base/mid/tgtname).str(); + return base/mid/tgtname; }