From 3aa8bd2a02dfad8860197f2e88223675392bf99d Mon Sep 17 00:00:00 2001 From: Benjamin Kraft Date: Sat, 28 Jan 2023 17:25:58 +0100 Subject: [PATCH] comment --- src/Queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Queue.h b/src/Queue.h index ccfb4ca..91b74e0 100644 --- a/src/Queue.h +++ b/src/Queue.h @@ -25,7 +25,7 @@ class Queue { virtual void update() {} // First in: points to next free slot size_t tail = 0; - // First out: points to leaving element position + // First out: points to leaving element's position size_t head = 0; T * container[MAX_QUEUE_SIZE]; protected: