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:
6c3ee0f
)
Fix clang warning: "extra ';' inside a class [-pedantic]".
author
Frits van Bommel
<fvbommel@gmail.com>
Mon, 6 Dec 2010 10:48:11 +0000
(10:48 +0000)
committer
Frits van Bommel
<fvbommel@gmail.com>
Mon, 6 Dec 2010 10:48:11 +0000
(10:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120998
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Support/FileSystem.h
patch
|
blob
|
history
diff --git
a/include/llvm/Support/FileSystem.h
b/include/llvm/Support/FileSystem.h
index f8d3b779dba552e464a09b94688cdadd47d92c6b..ce4da7ea75df856bfbb90bf1cfbdf2b3405dded2 100644
(file)
--- a/
include/llvm/Support/FileSystem.h
+++ b/
include/llvm/Support/FileSystem.h
@@
-607,7
+607,7
@@
public:
}
const directory_entry &operator*() const { return CurrentEntry; }
- const directory_entry *operator->() const { return &CurrentEntry; }
;
+ const directory_entry *operator->() const { return &CurrentEntry; }
bool operator!=(const directory_iterator &RHS) const {
return CurrentEntry != RHS.CurrentEntry;