aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2017-03-26 18:09:46 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2017-03-26 18:09:46 +0800
commit35bf705889b1ee86aea6932c9ed8092f6489885e (patch)
treec1285a4091a40fca6192b2c6fb0e673db78059bd
parent45b01494cce6f0a8f87092757197932843bee7af (diff)
downloaddexon-mcl-35bf705889b1ee86aea6932c9ed8092f6489885e.tar.gz
dexon-mcl-35bf705889b1ee86aea6932c9ed8092f6489885e.tar.zst
dexon-mcl-35bf705889b1ee86aea6932c9ed8092f6489885e.zip
fix declaration of template
-rw-r--r--include/mcl/ec.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mcl/ec.hpp b/include/mcl/ec.hpp
index 1cdcd0b..5676e60 100644
--- a/include/mcl/ec.hpp
+++ b/include/mcl/ec.hpp
@@ -787,7 +787,7 @@ template<class Fp> int EcT<Fp>::specialA_;
template<class Fp> bool EcT<Fp>::compressedExpression_;
template<class Fp> bool EcT<Fp>::verifyOrder_;
template<class Fp> mpz_class EcT<Fp>::order_;
-template<class Fp> static void (*mulArrayGLV)(EcT<Fp>& z, const EcT<Fp>& x, const fp::Unit *y, size_t yn, bool isNegative, bool constTime);
+template<class Fp> void (*EcT<Fp>::mulArrayGLV)(EcT& z, const EcT& x, const fp::Unit *y, size_t yn, bool isNegative, bool constTime);
#ifndef MCL_EC_USE_AFFINE
template<class Fp> int EcT<Fp>::mode_;
#endif