From 8c6a50b16fd3fb69113de155164bbc4c69aecb7b Mon Sep 17 00:00:00 2001 From: aortigos Date: Sun, 22 Mar 2026 21:42:31 +0100 Subject: [PATCH] Removed some comments --- ex02/Array/Array.tpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/ex02/Array/Array.tpp b/ex02/Array/Array.tpp index f86ac17..123a33a 100644 --- a/ex02/Array/Array.tpp +++ b/ex02/Array/Array.tpp @@ -6,18 +6,10 @@ /* By: aortigos creates an empty array -// Construction with an unsigned int n as parameter -// Consctrucion by copy and assignment operator -// operator new [] to allocate memory -// Access elements by operator [] -// Exception if access index out of bounds -// Function size - template Array::Array() : data(NULL), _size(0) {