mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Fix std::size_t integer ambiguity
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user