From: Frits van Bommel Date: Mon, 6 Dec 2010 10:48:11 +0000 (+0000) Subject: Fix clang warning: "extra ';' inside a class [-pedantic]". X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=03a83a3f41c4763974b6d9d9aff852c9611db44f;p=oota-llvm.git 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 --- diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h index f8d3b779dba..ce4da7ea75d 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;