summaryrefslogtreecommitdiff
path: root/KeysetTest.h
diff options
context:
space:
mode:
Diffstat (limited to 'KeysetTest.h')
-rw-r--r--KeysetTest.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/KeysetTest.h b/KeysetTest.h
index ae2bfcf..53b61ec 100644
--- a/KeysetTest.h
+++ b/KeysetTest.h
@@ -10,6 +10,8 @@
#include "Types.h"
#include "Stats.h"
+#include <algorithm> // for std::swap
+
//-----------------------------------------------------------------------------
// Sanity tests
@@ -38,11 +40,11 @@ void PermutationKeygenRecurse ( pfHash hash, uint32_t * blocks, int blockcount,
for(int i = k; i < blockcount; i++)
{
- swap(blocks[k],blocks[i]);
+ std::swap(blocks[k],blocks[i]);
PermutationKeygenRecurse(hash,blocks,blockcount,k+1,hashes);
- swap(blocks[k],blocks[i]);
+ std::swap(blocks[k],blocks[i]);
}
}