From b012eb8cc48fb5f29f911e7866c92c277616b875 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Thu, 15 Dec 2011 21:11:38 +0000 Subject: Zap unnecessary semicolons. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146682 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/FileSystem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h index a8857fb..e6f9926 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. -- cgit v1.1