Removed trailing whitespace.
authorMisha Brukman <brukman+llvm@gmail.com>
Fri, 20 Feb 2009 22:54:36 +0000 (22:54 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Fri, 20 Feb 2009 22:54:36 +0000 (22:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65197 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/ImmutableSet.h
include/llvm/ADT/ilist.h

index 2db659af7d5b1c4b8308b98dffa2399559a78abb..ba1262b077c31f1724ebf8a6fa79a207609bdef1 100644 (file)
@@ -1000,7 +1000,7 @@ public:
 
   /// 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; }
index 6bfc10009d16b8a15a7b6247c87d4b39de44bcd6..9a088fd71e664497634a4ec62dafb0216ea3e58c 100644 (file)
@@ -386,7 +386,7 @@ public:
   }
 
   iterator insertAfter(iterator where, NodeTy *New) {
-    if (empty()) 
+    if (empty())
       return insert(begin(), New);
     else
       return insert(++where, New);