From 5a2f20f6500e8dbf77942799a131e85a6983d6c1 Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Wed, 23 Sep 2020 13:00:26 +0900 Subject: [PATCH] fix typo --- include/mcl/elgamal.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mcl/elgamal.hpp b/include/mcl/elgamal.hpp index 9cf2919..58d0571 100644 --- a/include/mcl/elgamal.hpp +++ b/include/mcl/elgamal.hpp @@ -386,7 +386,7 @@ struct ElgamalT { create table g^i for i in [rangeMin, rangeMax] */ struct PowerCache { -#if (CYBOZU_CPP_VERSION > CYBOZU_CPP_VERSION_CP03) +#if (CYBOZU_CPP_VERSION > CYBOZU_CPP_VERSION_CPP03) typedef CYBOZU_NAMESPACE_STD::unordered_map Cache; #else typedef std::map Cache;