Don't use T as template argument, it is part of the application

namespace.


git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@195693 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Joerg Sonnenberger
2013-11-25 22:44:20 +00:00
parent 37d0212c57
commit bfaafd539c
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@
namespace __gnu_cxx {
using namespace std;
template <typename T> struct _LIBCPP_TYPE_VIS_ONLY hash : public std::hash<T>
template <typename _Tp> struct _LIBCPP_TYPE_VIS_ONLY hash : public std::hash<_Tp>
{ };
template <> struct _LIBCPP_TYPE_VIS_ONLY hash<const char*>