FixedPoint icon indicating copy to clipboard operation
FixedPoint copied to clipboard

Library for fixed point arithmetic in C++

Results 2 FixedPoint issues
Sort by recently updated
recently updated
newest added

Had this error for a while. Had to change convert method call from: ``` c++ // Convert both operands to result type ResultType op1(this->convert()); ResultType op2(value.convert()); ``` To: ``` c++...

The error is in the the constructor not being able to be overloaded. Steps for reproduction : Add FixedPoint in the examples.cpp and compile.