Fix base_uint ctor to disambiguate void const*

This commit is contained in:
Vinnie Falco
2013-07-25 11:43:24 -07:00
parent 492e61649b
commit 8b342d9859
6 changed files with 21 additions and 7 deletions

View File

@@ -28,7 +28,7 @@ public:
Status fetch (void const* key, NodeObject::Ptr* pObject)
{
uint256 const hash (key);
uint256 const hash (uint256::fromVoid (key));
Map::iterator iter = m_map.find (hash);