fix warning in example program

This commit is contained in:
greg
2019-05-12 18:24:27 -04:00
parent b140b82df1
commit 5c54670519
+1 -1
View File
@@ -68,7 +68,7 @@ public:
}
std::array<uint64_t, 4> state() const {
return {m_a, m_b, m_c, m_counter};
return std::array<uint64_t, 4>({m_a, m_b, m_c, m_counter});
}
void state(std::array<uint64_t, 4> const& s) {