From c6a6618e6ac368fde0f4e46325654fe3affd80b2 Mon Sep 17 00:00:00 2001 From: Wojciech Matyjewicz Date: Sun, 15 Jun 2008 18:02:47 +0000 Subject: Add a missing semicolon. llvm-svn: 52290 --- llvm/lib/System/Unix/Path.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/System/Unix') diff --git a/llvm/lib/System/Unix/Path.inc b/llvm/lib/System/Unix/Path.inc index 5b91b038d43..20d09c0f7ff 100644 --- a/llvm/lib/System/Unix/Path.inc +++ b/llvm/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); } -- cgit v1.2.3