mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-29 16:03:14 +03:00
- Move globals to anonymous namespaces.
- Move private static variables to anonymous namespaces. - Remove espnow prefix from names where it is not required.
This commit is contained in:
@ -24,7 +24,10 @@
|
||||
|
||||
#include "MutexTracker.h"
|
||||
|
||||
std::shared_ptr<bool> MutexTracker::_captureBan = std::make_shared<bool>(false);
|
||||
namespace
|
||||
{
|
||||
static std::shared_ptr<bool> _captureBan = std::make_shared<bool>(false);
|
||||
}
|
||||
|
||||
std::shared_ptr<bool> MutexTracker::captureBan()
|
||||
{
|
||||
|
Reference in New Issue
Block a user