diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2017-06-29 13:56:54 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2017-06-29 13:56:54 +0800 |
commit | 46f62973672176cc506ca3288ba70b90c212efc2 (patch) | |
tree | 27d380850fff2527b4efe3daf5f652e94649eb5b | |
parent | f9c543eab5e5f80187da650fe937ce8d04d7624a (diff) | |
download | tangerine-mcl-46f62973672176cc506ca3288ba70b90c212efc2.tar.gz tangerine-mcl-46f62973672176cc506ca3288ba70b90c212efc2.tar.zst tangerine-mcl-46f62973672176cc506ca3288ba70b90c212efc2.zip |
fix typo
-rw-r--r-- | include/mcl/ec.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mcl/ec.hpp b/include/mcl/ec.hpp index c829812..3f113f4 100644 --- a/include/mcl/ec.hpp +++ b/include/mcl/ec.hpp @@ -785,7 +785,7 @@ public: if (ioMode & 0xff) throw cybozu::Exception("EcT:setIoMode:use Fp::setIomode") << ioMode; ioMode_ = ioMode; } - static inline int getIoMode() { return Fp::getIoMode() | ioMode_; } + static inline int getIoMode() { return Fp::BaseFp::getIoMode() | ioMode_; } static inline void getWeierstrass(Fp& yy, const Fp& x) { Fp t; |