From f4da28d4b65ee9b8dbea8beadcff05f076fa46dd Mon Sep 17 00:00:00 2001 From: Guillaume Melquiond Date: Wed, 4 Mar 2009 12:24:56 +0000 Subject: [PATCH] Removed useless conversion. --- src/filesystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filesystem.cpp b/src/filesystem.cpp index 201c19222da..e103055d548 100644 --- a/src/filesystem.cpp +++ b/src/filesystem.cpp @@ -1125,7 +1125,7 @@ std::string normalize_path(const std::string &p1) else #endif if (!is_path_sep(p1[0])) - p2 = std::string(get_cwd()) + "/" + p1; + p2 = get_cwd() + "/" + p1; else p2 = p1;