Fix std::size_t integer ambiguity

This commit is contained in:
Vinnie Falco
2013-10-06 18:33:15 -07:00
parent 4868bc4df7
commit ab0548c9af

View File

@@ -304,7 +304,8 @@ public:
{
// VFALCO NOTE this is not thread safe (yet)
stream ["trusted"] = m_logic.m_chosenList ? m_logic.m_chosenList->size() : 0;
stream ["trusted"] = uint32 (
m_logic.m_chosenList ? m_logic.m_chosenList->size() : 0);
writeSources (stream);
}