diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-03-10 02:50:21 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-03-10 02:50:21 +0000 |
commit | 4ede164055adf41c4f363017cbe5de1cddbfdeb1 (patch) | |
tree | 53b50f8b8024e6064b5c31c6c6cf350ac54ce0b4 | |
parent | aee3ca6cfd4ff414786069776f747d5d6b6bc4a6 (diff) | |
download | bcm5719-llvm-4ede164055adf41c4f363017cbe5de1cddbfdeb1.tar.gz bcm5719-llvm-4ede164055adf41c4f363017cbe5de1cddbfdeb1.zip |
[LCG] One more formatting fix that I failed to get into the prior
commit. Sorry for the churn, just trying to keep it out of any
functionality changed.
llvm-svn: 203438
-rw-r--r-- | llvm/include/llvm/Analysis/LazyCallGraph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Analysis/LazyCallGraph.h b/llvm/include/llvm/Analysis/LazyCallGraph.h index bcd09ba1d7e..10a9a91a6e6 100644 --- a/llvm/include/llvm/Analysis/LazyCallGraph.h +++ b/llvm/include/llvm/Analysis/LazyCallGraph.h @@ -101,7 +101,7 @@ class LazyCallGraph { public: class Node; typedef SmallVector<PointerUnion<Function *, Node *>, 4> NodeVectorT; - typedef SmallVectorImpl<PointerUnion<Function *, Node *> > NodeVectorImplT; + typedef SmallVectorImpl<PointerUnion<Function *, Node *>> NodeVectorImplT; /// \brief A lazy iterator used for both the entry nodes and child nodes. /// |