Ich benutze clang (CXX = 'clang ++ -std = C++ 11 -stdlib = libC++') auf Mac OS X, mit Boost 1.53.0.boost :: UUIDs :: UUID als Schlüssel in std :: unordered_map?
Ich möchte UUID als Schlüssel in unordered_map verwenden, aber immer folgende Fehler:
/usr/bin/../lib/c++/v1/type_traits:748:38: error: implicit instantiation of undefined template
'std::__1::hash<boost::uuids::uuid>'
: public integral_constant<bool, __is_empty(_Tp)> {};
^
/usr/bin/../lib/c++/v1/unordered_map:327:54: note: in instantiation of template class
'std::__1::is_empty<std::__1::hash<boost::uuids::uuid> >' requested here
template <class _Key, class _Tp, class _Hash, bool = is_empty<_Hash>::value
...
/usr/bin/../lib/c++/v1/unordered_map:327:71: error: no member named 'value' in
'std::__1::is_empty<std::__1::hash<boost::uuids::uuid> >'
template <class _Key, class _Tp, class _Hash, bool = is_empty<_Hash>::value
~~~~~~~~~~~~~~~~~^
...
Was ist das - ein Bug in Boost, was es mit meiner C++ - Bibliothek inkompatibel macht? Oder mache ich etwas falsch? Irgendwelche Problemumgehungen?
+1 Anstatt eine explizite Spezialisierung von 'std :: hash' zu erstellen, könnten Sie auch einen Typ (sagen wir' uuid_hasher') erzeugen und'uuid_hasher :: operator() (uuid const &) 'implementieren. Dieser Typ wäre dann das dritte Template-Argument für die 'unordered_map'. – Praetorian
Ich denke,' operator() 'der Hash-Spezialisierung für Ihren Typ muss mit 'const' gekennzeichnet werden. Es nicht kompiliert zu lassen, kompiliert zu werden. –