[llvm-commits] [llvm] r146682 - /llvm/trunk/include/llvm/Support/FileSystem.h

Eli Friedman eli.friedman at gmail.com
Thu Dec 15 13:11:39 PST 2011


Author: efriedma
Date: Thu Dec 15 15:11:38 2011
New Revision: 146682

URL: http://llvm.org/viewvc/llvm-project?rev=146682&view=rev
Log:
Zap unnecessary semicolons.


Modified:
    llvm/trunk/include/llvm/Support/FileSystem.h

Modified: llvm/trunk/include/llvm/Support/FileSystem.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/FileSystem.h?rev=146682&r1=146681&r2=146682&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/FileSystem.h (original)
+++ llvm/trunk/include/llvm/Support/FileSystem.h Thu Dec 15 15:11:38 2011
@@ -666,8 +666,8 @@
     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.





More information about the llvm-commits mailing list