✏️」 norm: normed project.

This commit is contained in:
2025-04-12 11:44:33 +02:00
parent 6889efe370
commit 561402d3a1

View File

@ -6,13 +6,13 @@
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */ /* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/09 13:23:31 by adjoly #+# #+# */ /* Created: 2025/04/09 13:23:31 by adjoly #+# #+# */
/* Updated: 2025/04/09 14:05:54 by adjoly ### ########.fr */ /* Updated: 2025/04/09 14:47:54 by adjoly ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
#include "Base.hpp" #include "Base.hpp"
#include <iostream>
#include <cstdlib> #include <cstdlib>
#include <iostream>
void _log(std::string emoji, std::string what, std::string who, void _log(std::string emoji, std::string what, std::string who,
std::string str) { std::string str) {
@ -76,6 +76,4 @@ void identify(Base &p) {
std::cout << "this is none of those class :(" << std::endl; std::cout << "this is none of those class :(" << std::endl;
} }
Base::~Base(void) { Base::~Base(void) { _log("", "Base", "", "destructor called"); }
_log("", "Base", "", "destructor called");
}