Skip to content

Commit

Permalink
Removed trailing whitespace.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65197 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
mbrukman committed Feb 20, 2009
1 parent fe2cce6 commit 085a9eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/llvm/ADT/ImmutableSet.h
Original file line number Diff line number Diff line change
Expand Up @@ -1000,7 +1000,7 @@ class ImmutableSet {

/// 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; }
Expand Down
2 changes: 1 addition & 1 deletion include/llvm/ADT/ilist.h
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ class iplist : public Traits {
}

iterator insertAfter(iterator where, NodeTy *New) {
if (empty())
if (empty())
return insert(begin(), New);
else
return insert(++where, New);
Expand Down

0 comments on commit 085a9eb

Please sign in to comment.