Revert "fix warning in example program"

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