diff options
Diffstat (limited to 'src/benoit/t/pos/pos.cc')
-rw-r--r-- | src/benoit/t/pos/pos.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/benoit/t/pos/pos.cc b/src/benoit/t/pos/pos.cc index a69f8ec..50fa2df 100644 --- a/src/benoit/t/pos/pos.cc +++ b/src/benoit/t/pos/pos.cc @@ -1,6 +1,5 @@ # include <benoit/t/pos.hh> -# include <boost/multiprecision/mpfr.hpp> -benoit::t::pos::pos(boost::multiprecision::mpfr_float x,boost::multiprecision::mpfr_float y) { - //this->x = x; - //this->y = y; +benoit::t::pos::pos(__float128 x,__float128 y) { + this->x = x; + this->y = y; } |