diff options
-rw-r--r-- | include/llvm/Support/FileSystem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h index f8d3b77..ce4da7e 100644 --- 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; |