From 48f2d95b0f75ba9e90b6fb83705383cc86c3a156 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 18 Aug 2018 01:31:35 -0400 Subject: [PATCH] Fix ChaCha debug builds This broke at https://github.com/weidai11/cryptopp/commit/e2be0cdecce7 --- chacha.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chacha.cpp b/chacha.cpp index f92f7b20..504057f5 100644 --- a/chacha.cpp +++ b/chacha.cpp @@ -20,7 +20,7 @@ NAMESPACE_BEGIN(CryptoPP) #if defined(CRYPTOPP_DEBUG) && !defined(CRYPTOPP_DOXYGEN_PROCESSING) void ChaCha_TestInstantiations() { - ChaCha8::Encryption x; + ChaCha::Encryption x; } #endif