projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
48cca1f
)
Add a missing semicolon.
author
Wojciech Matyjewicz
<wmatyjewicz@fastmail.fm>
Sun, 15 Jun 2008 18:02:47 +0000
(18:02 +0000)
committer
Wojciech 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
patch
|
blob
|
history
diff --git
a/lib/System/Unix/Path.inc
b/lib/System/Unix/Path.inc
index 5b91b038d43d19ec32c722a87ba0bbd6c322cad9..20d09c0f7ffbbc907a50cab66e34061c15d54c34 100644
(file)
--- 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);
}