From ea597409557fe3afabe907cccbf6a6f0df5e0be8 Mon Sep 17 00:00:00 2001 From: dev Date: Mon, 25 Mar 2024 10:46:09 -0400 Subject: [PATCH] Remove comments --- src/tmx/TmxCore/src/MessageRouterBasic.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/tmx/TmxCore/src/MessageRouterBasic.cpp b/src/tmx/TmxCore/src/MessageRouterBasic.cpp index 75e0e368f..9545a57c9 100644 --- a/src/tmx/TmxCore/src/MessageRouterBasic.cpp +++ b/src/tmx/TmxCore/src/MessageRouterBasic.cpp @@ -51,7 +51,6 @@ void MessageRouterBasic::broadcastMessage(MessageReceiver *sender, IvpMessage *m //PerformanceTimer timer; pthread_mutex_lock(&this->mActiveBroadcastsLock); - // Volatile type should not be used in compound operations cpp:S6191 this->mActiveBroadcasts++; pthread_mutex_unlock(&this->mActiveBroadcastsLock); @@ -107,7 +106,6 @@ void MessageRouterBasic::broadcastMessage(MessageReceiver *sender, IvpMessage *m } } - // Volatile type should not be used in compound operations cpp:S6191 pthread_mutex_lock(&this->mActiveBroadcastsLock); this->mActiveBroadcasts--; pthread_mutex_unlock(&this->mActiveBroadcastsLock);