diff options
Diffstat (limited to 'src/math/gfpmath/point_gfp.cpp')
-rw-r--r-- | src/math/gfpmath/point_gfp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/math/gfpmath/point_gfp.cpp b/src/math/gfpmath/point_gfp.cpp index be4d56a18..b2bc1d946 100644 --- a/src/math/gfpmath/point_gfp.cpp +++ b/src/math/gfpmath/point_gfp.cpp @@ -819,7 +819,7 @@ void PointGFp::check_invariants() const print(mC.get_b(), "mC.b"); print(x3 + ax + mC.get_b(), "+"); - //throw Illegal_Point(); + throw Illegal_Point(); } } @@ -840,7 +840,7 @@ void PointGFp::check_invariants() const print(aXZ4, "axZ4"); print(bZ6, "bZ6"); print(x3 + aXZ4 + bZ6, "+"); - //throw Illegal_Point(); + throw Illegal_Point(); } } |