mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-03 01:12:59 +00:00
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:
parent
6c3ee0f3c9
commit
03a83a3f41
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user