#include <unordered_map>
#include <memory>
#include <vector>
template<> // Voxel has voxel.position which is a IVec2 containing 2 values, it also has a bool value
struct hash<Voxel> {
size_t operator()(const Voxel & k) const
{
return Math::hashFunc(k.position);
}
};
template<typename T> // This was already given
inline size_t hashFunc(const Vector<T, 2>& _key)
{
std::hash<T> hashfunc;
size_t h = 0xbd73a0fb;
h += hashfunc(_key[0]) * 0xf445f0a9;
h += hashfunc(_key[1]) * 0x5c23b2e1;
return h;
}
我的主要
int main()
{
Voxel t{ 16,0,true };
std::hash(t);
}
现在我正在撰写关于std :: hash的专业化。现在,在线提交页面始终为我的代码返回以下错误。我不知道为什么以及我做错了什么。
error: 'hash' is not a class template struct hash<>
和
error: no match for call to '(const std::hash<Math::Vector<int, 2ul> >) (const Math::Vector<int, 2ul>&)' noexcept(declval<const_Hash((declval<const_Key&>()))>.
我自己的编译器只抛出
error: The argument list for "class template" std :: hash "" is missing.
答案 0 :(得分:3)
为了后代,我忘记了#include <functional>
时也收到了相同的错误消息。
答案 1 :(得分:2)
您在全局命名空间中专门设置std::hash<>
,这是不正确的。
必须在同一名称空间std
中声明特化。请参阅std::hash
的示例:
// custom specialization of std::hash can be injected in namespace std
namespace std
{
template<> struct hash<S>
{
typedef S argument_type;
typedef std::size_t result_type;
result_type operator()(argument_type const& s) const
...