diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-10-19 11:30:22 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-10-19 11:30:22 +0200 |
| commit | a3ff15046fa3d367ff7304dc9482e81597eb76b9 (patch) | |
| tree | f3c02121bd166dbbeab83653ca9d0ba360eb8478 /cpp02/ex00 | |
| parent | 52a866baba3cbb05ecf0be88f1b50991b4a26b52 (diff) | |
| download | piscine_cpp-a3ff15046fa3d367ff7304dc9482e81597eb76b9.tar.gz piscine_cpp-a3ff15046fa3d367ff7304dc9482e81597eb76b9.tar.bz2 piscine_cpp-a3ff15046fa3d367ff7304dc9482e81597eb76b9.zip | |
Fixing cpp02/ex01 float/fixed conversions
Diffstat (limited to 'cpp02/ex00')
| -rw-r--r-- | cpp02/ex00/Fixed.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp02/ex00/Fixed.hpp b/cpp02/ex00/Fixed.hpp index 1f956d7..2ffe775 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/04/13 11:53:30 by charles ### ########.fr */ +/* Updated: 2020/10/19 08:27:01 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -22,7 +22,8 @@ public: Fixed(Fixed const& other); ~Fixed(); void operator=(Fixed const& other); - int getRawBits() const; + + int getRawBits() const; void setRawBits(int const raw); private: |
