Removed trailing whitespace.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65197 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2009-02-20 22:54:36 +00:00
parent fe2cce63aa
commit 085a9ebbc7
2 changed files with 2 additions and 2 deletions

View 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; }

View 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);