diff --git a/librerie/exercise2/queue/vec/queuevec.cpp b/librerie/exercise2/queue/vec/queuevec.cpp index 0f7a83d..42f6857 100755 --- a/librerie/exercise2/queue/vec/queuevec.cpp +++ b/librerie/exercise2/queue/vec/queuevec.cpp @@ -140,7 +140,7 @@ bool QueueVec::Empty() const noexcept{ template ulong QueueVec::Size() const noexcept{ - if(size == 0) return 0; // this won't ever get executed, it's here just in case + //if(size == 0) return 0; // this won't ever get executed, it's here just in case return ((rear + size) - front) % size; }