We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5498b90 commit fc7cf8bCopy full SHA for fc7cf8b
src/gridcoin/voting/result.cpp
@@ -642,7 +642,7 @@ class LegacyVoteCounterContext
642
if (m_poll.Choices().size() > (size_t) std::numeric_limits<uint8_t>::max()) {
643
LogPrintf("WARN: %s: Number of legacy poll choices exceeds bins available in m_legacy_choices_cache map. "
644
"Limiting to %u.", __func__, std::numeric_limits<uint8_t>::max());
645
- m_poll_choices_size = (size_t) std::numeric_limits<uint8_t>::max();
+ m_poll_choices_size = std::numeric_limits<uint8_t>::max();
646
} else {
647
m_poll_choices_size = m_poll.Choices().size();
648
}
0 commit comments