From: Eli Friedman Date: Thu, 15 Dec 2011 21:11:38 +0000 (+0000) Subject: Zap unnecessary semicolons. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b012eb8cc48fb5f29f911e7866c92c277616b875;p=oota-llvm.git Zap unnecessary semicolons. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146682 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h index a8857fbd032..e6f9926af6f 100644 --- a/include/llvm/Support/FileSystem.h +++ b/include/llvm/Support/FileSystem.h @@ -666,8 +666,8 @@ public: return *this; } - const directory_entry &operator*() const { return *State->Stack.top(); }; - const directory_entry *operator->() const { return &*State->Stack.top(); }; + const directory_entry &operator*() const { return *State->Stack.top(); } + const directory_entry *operator->() const { return &*State->Stack.top(); } // observers /// Gets the current level. Starting path is at level 0.