From 4b61f3ca3dba952a982f9d6102acc8956e33f54d Mon Sep 17 00:00:00 2001 From: Peter Conrad Date: Sun, 19 Aug 2018 10:42:27 +0200 Subject: [PATCH] Fixed alleged c&p bug --- include/fc/io/varint.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fc/io/varint.hpp b/include/fc/io/varint.hpp index 80082f2..fe8e82e 100644 --- a/include/fc/io/varint.hpp +++ b/include/fc/io/varint.hpp @@ -90,7 +90,7 @@ namespace std struct hash { public: - size_t operator()(const fc::signed_int &a) const + size_t operator()(const fc::unsigned_int &a) const { return std::hash()(a.value); }