From 03a83a3f41c4763974b6d9d9aff852c9611db44f Mon Sep 17 00:00:00 2001 From: Frits van Bommel Date: Mon, 6 Dec 2010 10:48:11 +0000 Subject: [PATCH] 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 --- include/llvm/Support/FileSystem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1