Consider the following code. I want to specialize std::hash<> used in a Map, according to the value of a static data member of the Array class. Note that Array depends on Map itself.
// Array.h
#include <unordered_map>
using namespace std;
class Array;
typedef pair<int, int> Point;
namespace std {
template <> struct hash<Point> {
size_t operator()(const Point & p) const {
return p.second * Array::C + p.first; // error: incomplete type ‘Array’ used in nested name specifier
}
};
}
typedef unordered_map<Point, Array, hash<Point> > Map;
class Array {
public:
static const int R = 5, C = 5;
Map compute() {/*...*/}
};
Of course, in the above specialization Array is not complete yet, so the compiler complains. However, if I move the specialization below the class definition, I obtain another error:
error: specialization of ‘std::hash<std::pair<int, int> >’ after instantiation
std. You must not overload function templates, though. (Note that there's no partial specialization for function templates, you have to use overloading instead — which is forbidden. Hence you can specializestd::swap<>()for yourfooclass, but not for — all instances of — yourbar<T>template.) – sbi Dec 8 '11 at 16:22