diff options
Diffstat (limited to 'cpp02/ex00/Fixed.hpp')
| -rw-r--r-- | cpp02/ex00/Fixed.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp02/ex00/Fixed.hpp b/cpp02/ex00/Fixed.hpp index 2ffe775..c8bdfb0 100644 --- a/cpp02/ex00/Fixed.hpp +++ b/cpp02/ex00/Fixed.hpp @@ -6,7 +6,7 @@ /* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/13 11:40:49 by charles #+# #+# */ -/* Updated: 2020/10/19 08:27:01 by cacharle ### ########.fr */ +/* Updated: 2020/11/09 13:10:35 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -21,13 +21,13 @@ public: Fixed(); Fixed(Fixed const& other); ~Fixed(); - void operator=(Fixed const& other); + Fixed& operator=(Fixed const& other); int getRawBits() const; void setRawBits(int const raw); private: - int m_value; + int m_value; static int const m_fractional_bits = 8; }; |
