@@ -313,7 +313,7 @@ namespace OZW {
313313 Nan::HandleScope scope;
314314 CheckMinArgs (1 , " nodeid" );
315315 uint8 nodeid = Nan::To<Number>(info[0 ]).ToLocalChecked ()->Value ();
316- std::string result = OpenZWave::Manager::Get ()->GetNodePlusTypeString (homeid, nodeid);
316+ :: std::string result = OpenZWave::Manager::Get ()->GetNodePlusTypeString (homeid, nodeid);
317317 info.GetReturnValue ().Set (Nan::New<String>(result.c_str ()).ToLocalChecked ());
318318 }
319319 /*
@@ -325,7 +325,7 @@ namespace OZW {
325325 Nan::HandleScope scope;
326326 CheckMinArgs (1 , " nodeid" );
327327 uint8 nodeid = Nan::To<Number>(info[0 ]).ToLocalChecked ()->Value ();
328- std::string result = OpenZWave::Manager::Get ()->GetNodeRoleString (homeid, nodeid);
328+ :: std::string result = OpenZWave::Manager::Get ()->GetNodeRoleString (homeid, nodeid);
329329 info.GetReturnValue ().Set (Nan::New<String>(result.c_str ()).ToLocalChecked ());
330330 }
331331 /*
@@ -361,7 +361,7 @@ namespace OZW {
361361 Nan::HandleScope scope;
362362 CheckMinArgs (1 , " nodeid" );
363363 uint8 nodeid = Nan::To<Number>(info[0 ]).ToLocalChecked ()->Value ();
364- std::string result = OpenZWave::Manager::Get ()->GetNodeDeviceTypeString (homeid, nodeid);
364+ :: std::string result = OpenZWave::Manager::Get ()->GetNodeDeviceTypeString (homeid, nodeid);
365365 info.GetReturnValue ().Set (Nan::New<String>(result.c_str ()).ToLocalChecked ());
366366 }
367367 /*
@@ -422,7 +422,7 @@ namespace OZW {
422422 Nan::HandleScope scope;
423423 CheckMinArgs (1 , " nodeid" );
424424 uint8 nodeid = Nan::To<Number>(info[0 ]).ToLocalChecked ()->Value ();
425- std::string result = OpenZWave::Manager::Get ()->GetNodeQueryStage (homeid, nodeid);
425+ :: std::string result = OpenZWave::Manager::Get ()->GetNodeQueryStage (homeid, nodeid);
426426 info.GetReturnValue ().Set (Nan::New<String>(result.c_str ()).ToLocalChecked ());
427427 }
428428 /*
0 commit comments