fix;
This commit is contained in:
@ -18,17 +18,17 @@ class Fixed
|
||||
|
||||
Fixed &operator=(const Fixed& src);
|
||||
|
||||
bool operator<(const Fixed& src);
|
||||
bool operator>(const Fixed& src);
|
||||
bool operator>=(const Fixed& src);
|
||||
bool operator<=(const Fixed& src);
|
||||
bool operator==(const Fixed& src);
|
||||
bool operator!=(const Fixed& src);
|
||||
bool operator<(const Fixed& src) const;
|
||||
bool operator>(const Fixed& src) const;
|
||||
bool operator>=(const Fixed& src) const;
|
||||
bool operator<=(const Fixed& src) const;
|
||||
bool operator==(const Fixed& src) const;
|
||||
bool operator!=(const Fixed& src) const;
|
||||
|
||||
Fixed operator-(const Fixed& src);
|
||||
Fixed operator+(const Fixed& src);
|
||||
Fixed operator*(const Fixed& src);
|
||||
Fixed operator/(const Fixed& src);
|
||||
Fixed operator-(const Fixed& src) const;
|
||||
Fixed operator+(const Fixed& src) const;
|
||||
Fixed operator*(const Fixed& src) const;
|
||||
Fixed operator/(const Fixed& src) const;
|
||||
|
||||
|
||||
Fixed &operator++();
|
||||
|
Reference in New Issue
Block a user