summaryrefslogtreecommitdiff
path: root/keccak.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'keccak.cpp')
-rw-r--r--keccak.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/keccak.cpp b/keccak.cpp
index ed69590e..1d2154f8 100644
--- a/keccak.cpp
+++ b/keccak.cpp
@@ -48,7 +48,7 @@ void Keccak::Update(const byte *input, size_t length)
void Keccak::Restart()
{
- memset(m_state, 0, m_state.SizeInBytes());
+ std::memset(m_state, 0, m_state.SizeInBytes());
m_counter = 0;
}