From 6afe2e9fdc254426cd9293f3738bca11d1c4d11d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 13 Feb 2015 16:36:47 +0100 Subject: [PATCH] astyle formatting --- lib/path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/path.cpp b/lib/path.cpp index 34dd3800e..569818653 100644 --- a/lib/path.cpp +++ b/lib/path.cpp @@ -100,7 +100,7 @@ std::string Path::simplifyPath(std::string originalPath) } else if (i > 0 && pathParts[i] == ".") { pathParts.erase(pathParts.begin() + static_cast(i)); i = 0; - // Don't touch leading "//" which means a UNC path + // Don't touch leading "//" which means a UNC path } else if (i > 1 && pathParts[i] == "/" && pathParts[i-1] == "/") { pathParts.erase(pathParts.begin() + static_cast(i) - 1); i = 0;