summaryrefslogtreecommitdiff
path: root/include/llvm/Support/FileSystem.h
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2011-12-15 21:11:38 +0000
committerEli Friedman <eli.friedman@gmail.com>2011-12-15 21:11:38 +0000
commitb012eb8cc48fb5f29f911e7866c92c277616b875 (patch)
tree1569635411f2078fda18c1fbf97c693889931501 /include/llvm/Support/FileSystem.h
parent81fdd7bd6a35422492239aabad21882dc61eba24 (diff)
downloadllvm-b012eb8cc48fb5f29f911e7866c92c277616b875.tar.gz
llvm-b012eb8cc48fb5f29f911e7866c92c277616b875.tar.bz2
llvm-b012eb8cc48fb5f29f911e7866c92c277616b875.tar.xz
Zap unnecessary semicolons.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146682 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/FileSystem.h')
-rw-r--r--include/llvm/Support/FileSystem.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h
index a8857fbd03..e6f9926af6 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.