Add a missing semicolon.
authorWojciech Matyjewicz <wmatyjewicz@fastmail.fm>
Sun, 15 Jun 2008 18:02:47 +0000 (18:02 +0000)
committerWojciech Matyjewicz <wmatyjewicz@fastmail.fm>
Sun, 15 Jun 2008 18:02:47 +0000 (18:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52290 91177308-0d34-0410-b5e6-96231b3b80d8

lib/System/Unix/Path.inc

index 5b91b038d43d19ec32c722a87ba0bbd6c322cad9..20d09c0f7ffbbc907a50cab66e34061c15d54c34 100644 (file)
@@ -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);
 }