aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2018-08-26 11:24:10 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2018-08-26 11:24:10 +0800
commit6aa0bc086920516ef67abff1e9f0304a12467170 (patch)
treed3c09756479d5d955975d3ed328199ab6c7a5ebe
parent271a2e4146a1bdb3c642fafe1c360f06a3b8a6ae (diff)
downloadtangerine-mcl-6aa0bc086920516ef67abff1e9f0304a12467170.tar.gz
tangerine-mcl-6aa0bc086920516ef67abff1e9f0304a12467170.tar.zst
tangerine-mcl-6aa0bc086920516ef67abff1e9f0304a12467170.zip
remove unnecessary assert
-rw-r--r--include/mcl/ec.hpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/mcl/ec.hpp b/include/mcl/ec.hpp
index 92d4f67..ffad737 100644
--- a/include/mcl/ec.hpp
+++ b/include/mcl/ec.hpp
@@ -212,7 +212,6 @@ public:
// verify the order
bool isValidOrder() const
{
- assert(order_);
EcT Q;
EcT::mulGeneric(Q, *this, order_);
return Q.isZero();