From 585571872e7b59edbeff691a47e902532bf7647f Mon Sep 17 00:00:00 2001 From: Camille Chauvet Date: Thu, 22 Jun 2023 13:29:18 +0200 Subject: [PATCH] clean: remove debug print --- ex01/src/PhoneBook.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/ex01/src/PhoneBook.cpp b/ex01/src/PhoneBook.cpp index b6d1105..92cb835 100644 --- a/ex01/src/PhoneBook.cpp +++ b/ex01/src/PhoneBook.cpp @@ -49,7 +49,6 @@ void PhoneBook::display_contacts() Contact* PhoneBook::search(int index) { - std::cout << this->len << " " << index << std::endl; if ((size_t) index >= this->len || index < 0) return (NULL); return (&this->contacts[index]);