From 6aa0bc086920516ef67abff1e9f0304a12467170 Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Sun, 26 Aug 2018 12:24:10 +0900 Subject: [PATCH] remove unnecessary assert --- include/mcl/ec.hpp | 1 - 1 file changed, 1 deletion(-) 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();