clarification

This commit is contained in:
Robin Müller 2021-07-14 10:27:33 +02:00
parent f427c87270
commit 8f1a54aa19
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
1 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,8 @@ private:
QueueMapManager();
~QueueMapManager();
uint32_t queueCounter = 0;
// Start at 1 because 0 might be the NO_QUEUE value
uint32_t queueCounter = 1;
MutexIF* mapLock;
QueueMap queueMap;
static QueueMapManager* mqManagerInstance;