From 0c83b922e56976a30506d9f8d43c9dcd38d573b5 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sat, 31 Mar 2012 13:51:58 +0300 Subject: [PATCH] Remove a useless path-to-string conversion --- source/install.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.43.0