From 2644e424a85a46a2924797e6ee008d3d0f9fddcf Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 3 Apr 2025 13:42:11 +0200 Subject: [PATCH] style: moving all the inlcudes in header --- cpp08/ex00/easyfind.hpp | 3 ++- cpp08/ex00/main.cpp | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cpp08/ex00/easyfind.hpp b/cpp08/ex00/easyfind.hpp index 533e7d5..9ed35f6 100644 --- a/cpp08/ex00/easyfind.hpp +++ b/cpp08/ex00/easyfind.hpp @@ -6,7 +6,7 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/04/03 10:16:18 by rparodi #+# #+# */ -/* Updated: 2025/04/03 11:46:18 by rparodi ### ########.fr */ +/* Updated: 2025/04/03 13:41:46 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ @@ -16,6 +16,7 @@ #include #include #include +#include #include #define CLR_RESET "\033[0m" diff --git a/cpp08/ex00/main.cpp b/cpp08/ex00/main.cpp index e91281b..e492464 100644 --- a/cpp08/ex00/main.cpp +++ b/cpp08/ex00/main.cpp @@ -6,12 +6,11 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/04/03 10:14:39 by rparodi #+# #+# */ -/* Updated: 2025/04/03 12:04:11 by rparodi ### ########.fr */ +/* Updated: 2025/04/03 13:41:47 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #include "easyfind.hpp" -#include int main(void) { std::cout << CLR_GREEN << "Trying using int vector" << std::endl;