From 56057784a82e092f367cddc96e2f1e510f374673 Mon Sep 17 00:00:00 2001 From: Raphael Date: Tue, 18 Feb 2025 20:22:34 +0100 Subject: [PATCH] style: remove tab on wrong cat to align all message --- cpp04/ex00/WrongCat.cpp | 10 +++++----- cpp04/ex01/WrongCat.cpp | 4 ++-- cpp04/ex02/WrongCat.cpp | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cpp04/ex00/WrongCat.cpp b/cpp04/ex00/WrongCat.cpp index 47bc993..be28caf 100644 --- a/cpp04/ex00/WrongCat.cpp +++ b/cpp04/ex00/WrongCat.cpp @@ -6,7 +6,7 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/18 16:22:05 by rparodi #+# #+# */ -/* Updated: 2025/02/18 16:53:06 by rparodi ### ########.fr */ +/* Updated: 2025/02/18 20:21:16 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ @@ -14,12 +14,12 @@ #include WrongCat::WrongCat() { - std::cout << "[WrongCat]\t\tCreating WrongCat class" << std::endl; + std::cout << "[WrongCat]\tCreating WrongCat class" << std::endl; type = "WrongCat"; } WrongCat::WrongCat(WrongCat const & copy) { - std::cout << "[WrongCat]\t\tCreating WrongCat class (copy)" << std::endl; + std::cout << "[WrongCat]\tCreating WrongCat class (copy)" << std::endl; this->type = copy.type; } @@ -30,9 +30,9 @@ WrongCat & WrongCat::operator=(WrongCat const & assign) { } WrongCat::~WrongCat() { - std::cout << "[WrongCat]\t\tDeleting WrongCat class" << std::endl; + std::cout << "[WrongCat]\tDeleting WrongCat class" << std::endl; } void WrongCat::makeSound() const { - std::cout << "[WrongCat]\t\t🐱 | Wouf wouf" << std::endl; + std::cout << "[WrongCat]\t🐱 | Wouf wouf" << std::endl; } diff --git a/cpp04/ex01/WrongCat.cpp b/cpp04/ex01/WrongCat.cpp index b2b130d..be28caf 100644 --- a/cpp04/ex01/WrongCat.cpp +++ b/cpp04/ex01/WrongCat.cpp @@ -6,7 +6,7 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/18 16:22:05 by rparodi #+# #+# */ -/* Updated: 2025/02/18 17:17:44 by rparodi ### ########.fr */ +/* Updated: 2025/02/18 20:21:16 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ @@ -24,7 +24,7 @@ WrongCat::WrongCat(WrongCat const & copy) { } WrongCat & WrongCat::operator=(WrongCat const & assign) { - std::cout << "[WrongCat]\tCreating WrongCat class (assign)" << std::endl; + std::cout << "[WrongCat]\t\tCreating WrongCat class (assign)" << std::endl; this->type = assign.type; return *this; } diff --git a/cpp04/ex02/WrongCat.cpp b/cpp04/ex02/WrongCat.cpp index b2b130d..be28caf 100644 --- a/cpp04/ex02/WrongCat.cpp +++ b/cpp04/ex02/WrongCat.cpp @@ -6,7 +6,7 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/18 16:22:05 by rparodi #+# #+# */ -/* Updated: 2025/02/18 17:17:44 by rparodi ### ########.fr */ +/* Updated: 2025/02/18 20:21:16 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ @@ -24,7 +24,7 @@ WrongCat::WrongCat(WrongCat const & copy) { } WrongCat & WrongCat::operator=(WrongCat const & assign) { - std::cout << "[WrongCat]\tCreating WrongCat class (assign)" << std::endl; + std::cout << "[WrongCat]\t\tCreating WrongCat class (assign)" << std::endl; this->type = assign.type; return *this; }