summaryrefslogtreecommitdiff
path: root/arc4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'arc4.cpp')
-rw-r--r--arc4.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/arc4.cpp b/arc4.cpp
index b78b756..0beeb24 100644
--- a/arc4.cpp
+++ b/arc4.cpp
@@ -7,9 +7,11 @@
// completely in the public domain.
#include "pch.h"
+#define CRYPTOPP_ENABLE_NAMESPACE_WEAK
#include "arc4.h"
NAMESPACE_BEGIN(CryptoPP)
+namespace Weak {
void ARC4_TestInstantiations()
{
@@ -113,4 +115,5 @@ void ARC4_Base::DiscardBytes(size_t length)
m_y = y;
}
+}
NAMESPACE_END