diff options
author | Frits van Bommel <fvbommel@gmail.com> | 2010-12-06 10:48:11 +0000 |
---|---|---|
committer | Frits van Bommel <fvbommel@gmail.com> | 2010-12-06 10:48:11 +0000 |
commit | 03a83a3f41c4763974b6d9d9aff852c9611db44f (patch) | |
tree | 12def9c2448271a475345dfc1e1ff0ecde8704c1 /include | |
parent | 6c3ee0f3c9684e588c8852d90c891d6354175c9e (diff) | |
download | external_llvm-03a83a3f41c4763974b6d9d9aff852c9611db44f.zip external_llvm-03a83a3f41c4763974b6d9d9aff852c9611db44f.tar.gz external_llvm-03a83a3f41c4763974b6d9d9aff852c9611db44f.tar.bz2 |
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
Diffstat (limited to 'include')
-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; |