commit | ce6f137a01884d87c77f34ec7845d0b36222e2e3 | [log] [tgz] |
---|---|---|
author | Wojciech Matyjewicz <wmatyjewicz@fastmail.fm> | Sun Jun 15 18:02:47 2008 +0000 |
committer | Wojciech Matyjewicz <wmatyjewicz@fastmail.fm> | Sun Jun 15 18:02:47 2008 +0000 |
tree | b3b87238f4637b5efbb9f48b58e2b6af498017f5 | |
parent | 9ff7ceee6b52f28395d4351ba9fde79b6b0532a4 [diff] [blame] |
Add a missing semicolon. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52290 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/System/Unix/Path.inc b/lib/System/Unix/Path.inc index 5b91b03..20d09c0 100644 --- a/lib/System/Unix/Path.inc +++ b/lib/System/Unix/Path.inc
@@ -314,7 +314,7 @@ 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); }