Fix clang warning: "extra ';' inside a class [-pedantic]".

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120998 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Frits van Bommel 2010-12-06 10:48:11 +00:00
parent 6c3ee0f3c9
commit 03a83a3f41

View File

@ -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;