1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Removed trailing whitespace.

llvm-svn: 65197
This commit is contained in:
Misha Brukman 2009-02-20 22:54:36 +00:00
parent 7ee4196e74
commit 4637ef9b4b
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);