summaryrefslogtreecommitdiff
path: root/validat1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'validat1.cpp')
-rw-r--r--validat1.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/validat1.cpp b/validat1.cpp
index fa9ae597..d978d17c 100644
--- a/validat1.cpp
+++ b/validat1.cpp
@@ -846,7 +846,7 @@ bool TestSecBlock()
{
static const unsigned int SIZE = 8;
SecBlockWithHint<byte, SIZE> block(SIZE);
- memset(block, 0xaa, block.SizeInBytes());
+ std::memset(block, 0xaa, block.SizeInBytes());
temp = true;
block.CleanGrow(SIZE*2);
@@ -883,7 +883,7 @@ bool TestSecBlock()
{
static const unsigned int SIZE = 8;
SecBlockWithHint<word32, SIZE> block(SIZE);
- memset(block, 0xaa, block.SizeInBytes());
+ std::memset(block, 0xaa, block.SizeInBytes());
temp = true;
block.CleanGrow(SIZE*2);
@@ -921,7 +921,7 @@ bool TestSecBlock()
{
static const unsigned int SIZE = 8;
SecBlockWithHint<word64, SIZE> block(SIZE);
- memset(block, 0xaa, block.SizeInBytes());
+ std::memset(block, 0xaa, block.SizeInBytes());
temp = true;
block.CleanGrow(SIZE*2);
@@ -960,7 +960,7 @@ bool TestSecBlock()
{
static const unsigned int SIZE = 8;
SecBlock<word128, AllocatorWithCleanup<word128, true> > block(SIZE);
- memset(block, 0xaa, block.SizeInBytes());
+ std::memset(block, 0xaa, block.SizeInBytes());
temp = true;
block.CleanGrow(SIZE*2);