cleanup another warning

This commit is contained in:
greg
2021-02-01 14:28:48 -05:00
parent 4a7e130032
commit 9f6f49a965
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ public:
}
std::array<uint64_t, 4> state() const {
return {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) {