diff options
| author | Benjamin Kramer <benny.kra@googlemail.com> | 2014-03-07 14:42:25 +0000 |
|---|---|---|
| committer | Benjamin Kramer <benny.kra@googlemail.com> | 2014-03-07 14:42:25 +0000 |
| commit | f04ddd01c9d805507868da00a71c80d0fd355256 (patch) | |
| tree | fc85ade2b098f1ef592fab4c00b972302b99908b /llvm/unittests/ADT/TinyPtrVectorTest.cpp | |
| parent | ed2f476b2039443d947eafff3b199005468e7e7e (diff) | |
| download | bcm5719-llvm-f04ddd01c9d805507868da00a71c80d0fd355256.tar.gz bcm5719-llvm-f04ddd01c9d805507868da00a71c80d0fd355256.zip | |
[C++11] Replace LLVM-style type traits with C++11 standard ones.
No functionality change.
llvm-svn: 203242
Diffstat (limited to 'llvm/unittests/ADT/TinyPtrVectorTest.cpp')
| -rw-r--r-- | llvm/unittests/ADT/TinyPtrVectorTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ADT/TinyPtrVectorTest.cpp b/llvm/unittests/ADT/TinyPtrVectorTest.cpp index d633f967221..ec868d4258a 100644 --- a/llvm/unittests/ADT/TinyPtrVectorTest.cpp +++ b/llvm/unittests/ADT/TinyPtrVectorTest.cpp @@ -36,7 +36,7 @@ template <typename VectorT> class TinyPtrVectorTest : public testing::Test { protected: typedef typename VectorT::value_type PtrT; - typedef typename remove_pointer<PtrT>::type ValueT; + typedef typename std::remove_pointer<PtrT>::type ValueT; VectorT V; VectorT V2; |

