From 8ea71ee6798c19ede2472551299739f63ffa21e0 Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Sun, 28 Feb 2016 04:31:38 +0900 Subject: [PATCH] change class to struct --- include/mcl/fp.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mcl/fp.hpp b/include/mcl/fp.hpp index 9705a07..09669d1 100644 --- a/include/mcl/fp.hpp +++ b/include/mcl/fp.hpp @@ -60,7 +60,7 @@ class FpT { Unit v_[maxSize]; template friend class FpDblT; template friend class Fp2T; - template friend class Fp6T; + template friend struct Fp6T; public: // return pointer to array v_[] const Unit *getUnit() const { return v_; }