[llvm-commits] [llvm] r65197 - in /llvm/trunk/include/llvm/ADT: ImmutableSet.h ilist.h

Misha Brukman brukman+llvm at gmail.com
Fri Feb 20 14:54:37 PST 2009


Author: brukman
Date: Fri Feb 20 16:54:36 2009
New Revision: 65197

URL: http://llvm.org/viewvc/llvm-project?rev=65197&view=rev
Log:
Removed trailing whitespace.

Modified:
    llvm/trunk/include/llvm/ADT/ImmutableSet.h
    llvm/trunk/include/llvm/ADT/ilist.h

Modified: llvm/trunk/include/llvm/ADT/ImmutableSet.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/ImmutableSet.h?rev=65197&r1=65196&r2=65197&view=diff

==============================================================================
--- llvm/trunk/include/llvm/ADT/ImmutableSet.h (original)
+++ llvm/trunk/include/llvm/ADT/ImmutableSet.h Fri Feb 20 16:54:36 2009
@@ -1000,7 +1000,7 @@
 
   /// isEmpty - Return true if the set contains no elements.
   bool isEmpty() const { return !Root; }
-  
+
   /// isSingleton - Return true if the set contains exactly one element.
   ///   This method runs in constant time.
   bool isSingleton() const { return getHeight() == 1; }

Modified: llvm/trunk/include/llvm/ADT/ilist.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/ilist.h?rev=65197&r1=65196&r2=65197&view=diff

==============================================================================
--- llvm/trunk/include/llvm/ADT/ilist.h (original)
+++ llvm/trunk/include/llvm/ADT/ilist.h Fri Feb 20 16:54:36 2009
@@ -386,7 +386,7 @@
   }
 
   iterator insertAfter(iterator where, NodeTy *New) {
-    if (empty()) 
+    if (empty())
       return insert(begin(), New);
     else
       return insert(++where, New);





More information about the llvm-commits mailing list