From 5383d5b4815ce01bdf6cb0922d635131e3678fb1 Mon Sep 17 00:00:00 2001 From: John Jones Date: Mon, 9 Apr 2018 10:14:00 -0500 Subject: [PATCH] boost::hash not used, removed --- include/fc/crypto/sha256.hpp | 13 ------------- 1 file changed, 13 deletions(-) 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 )