Default value for fixed is zero

This commit is contained in:
2025-09-12 12:57:59 +02:00
parent 9df8240460
commit bcb5cb36fe

View File

@@ -6,14 +6,14 @@
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/09/10 00:54:50 by tigos #+# #+# */
/* Updated: 2025/09/10 22:02:52 by aortigos ### ########.fr */
/* Updated: 2025/09/12 12:56:07 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
#include "Fixed.hpp"
// Default constructor
Fixed::Fixed()
Fixed::Fixed() : value(0)
{
std::cout << "Default constructor called" << std::endl;
}