diff --git a/include/fc/crypto/sha256.hpp b/include/fc/crypto/sha256.hpp index 0adc2ac..33a2bfc 100644 --- a/include/fc/crypto/sha256.hpp +++ b/include/fc/crypto/sha256.hpp @@ -3,7 +3,6 @@ #include #include #include -#include namespace fc { @@ -134,17 +133,5 @@ namespace std }; } -namespace boost -{ - template<> - struct hash - { - size_t operator()( const fc::sha256& s )const - { - return s._hash[3];// *((size_t*)&s); - } - }; -} - #include FC_REFLECT_TYPENAME( fc::sha256 )