blob: e6a583c8994a953bb0f53e8fc29577c7356aa89d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- freehdl/kernel-util.hh.orig 2013-04-30 20:24:07.000000000 +0000
+++ freehdl/kernel-util.hh
@@ -24,10 +24,10 @@ using namespace __gnu_cxx;
// A hash function template used tp generate a hash number from
// pointer values.
template<class T>
-class pointer_hash : public hash<unsigned long> {
+class pointer_hash : public __gnu_cxx::hash<unsigned long> {
public:
size_t operator()(const T& x) const {
- return (*(hash<unsigned long> *)this)(((unsigned long)x)>>2);
+ return (*(__gnu_cxx::hash<unsigned long> *)this)(((unsigned long)x)>>2);
}
};
|