We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df758f7 commit 7956426Copy full SHA for 7956426
src/handle_manager.cpp
@@ -40,7 +40,6 @@ HandleManager::~HandleManager() {
40
41
void HandleManager::SynchronizeHandles(const Napi::Object& node) {
42
Napi::HandleScope scope(node.Env());
43
-
44
Napi::Value timers = node.Get("_timers");
45
Napi::Value subscriptions = node.Get("_subscriptions");
46
Napi::Value clients = node.Get("_clients");
@@ -49,6 +48,7 @@ void HandleManager::SynchronizeHandles(const Napi::Object& node) {
49
48
Napi::Value action_clients = node.Get("_actionClients");
50
Napi::Value action_servers = node.Get("_actionServers");
51
Napi::Value events = node.Get("_events");
+
52
uint32_t sum = 0;
53
is_synchronizing_.store(true);
54
{
0 commit comments