From 93c534623c4691d255ea6c870347482ff8752313 Mon Sep 17 00:00:00 2001 From: Wojciech Matyjewicz Date: Sun, 15 Jun 2008 18:02:47 +0000 Subject: [PATCH] Add a missing semicolon. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52290 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/System/Unix/Path.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/System/Unix/Path.inc b/lib/System/Unix/Path.inc index 5b91b038d43..20d09c0f7ff 100644 --- a/lib/System/Unix/Path.inc +++ b/lib/System/Unix/Path.inc @@ -314,7 +314,7 @@ Path::getSuffix() const { std::string::size_type dot = path.rfind('.'); if (dot == std::string::npos || dot < slash) - return std::string() + return std::string(); else return path.substr(dot + 1); }