This commit is contained in:
Camille Chauvet
2023-08-07 19:06:32 +02:00
parent 13f208d577
commit 18a2008a96
5 changed files with 5 additions and 9 deletions

BIN
ex01/ex01 Executable file

Binary file not shown.

View File

@ -1,7 +1,6 @@
#ifndef FIXED_H
# define FIXED_H
#pragma once
# include <ostream>
#include <ostream>
class Fixed
{
@ -25,5 +24,3 @@ class Fixed
};
std::ostream& operator << (std::ostream &out, const Fixed& fixed);
#endif