Skip to content

Commit 9bd3d9a

Browse files
committed
Don't over-qualify namespaces (Fixes #3)
1 parent dd8e77b commit 9bd3d9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/WordList.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ using namespace std;
2525

2626
namespace __gnu_cxx
2727
{
28-
template<> struct __gnu_cxx::hash< std::string >
28+
template<> struct hash< std::string >
2929
{
3030
size_t operator()( const std::string& x ) const
3131
{
32-
return __gnu_cxx::hash< const char* >()( x.c_str() );
32+
return hash< const char* >()( x.c_str() );
3333
}
3434
};
3535
}

0 commit comments

Comments
 (0)