From f04ddd01c9d805507868da00a71c80d0fd355256 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Fri, 7 Mar 2014 14:42:25 +0000 Subject: [C++11] Replace LLVM-style type traits with C++11 standard ones. No functionality change. llvm-svn: 203242 --- llvm/unittests/ADT/TinyPtrVectorTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/unittests/ADT/TinyPtrVectorTest.cpp') 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 class TinyPtrVectorTest : public testing::Test { protected: typedef typename VectorT::value_type PtrT; - typedef typename remove_pointer::type ValueT; + typedef typename std::remove_pointer::type ValueT; VectorT V; VectorT V2; -- cgit v1.2.3