summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/ilist.h
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2009-02-20 22:54:36 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2009-02-20 22:54:36 +0000
commit085a9ebbc705c6e7d3fd8c692ef1c46fdfb885ce (patch)
treea0f1aa02a24312fc0713dea7ff74a9953bf66198 /include/llvm/ADT/ilist.h
parentfe2cce63aa26d0916fa7be32c6bf7fa8fb059ee7 (diff)
downloadllvm-085a9ebbc705c6e7d3fd8c692ef1c46fdfb885ce.tar.gz
llvm-085a9ebbc705c6e7d3fd8c692ef1c46fdfb885ce.tar.bz2
llvm-085a9ebbc705c6e7d3fd8c692ef1c46fdfb885ce.tar.xz
Removed trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65197 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/ilist.h')
-rw-r--r--include/llvm/ADT/ilist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/ilist.h b/include/llvm/ADT/ilist.h
index 6bfc10009d..9a088fd71e 100644
--- a/include/llvm/ADT/ilist.h
+++ b/include/llvm/ADT/ilist.h
@@ -386,7 +386,7 @@ public:
}
iterator insertAfter(iterator where, NodeTy *New) {
- if (empty())
+ if (empty())
return insert(begin(), New);
else
return insert(++where, New);