[runner] rename 'module' variables (#8999)

rename all occurrences of 'module' to 'pt_module' to prevent intellisense error
This commit is contained in:
Enrico Giordani
2021-01-08 19:26:38 +01:00
committed by GitHub
parent cccd2c0139
commit dbda4d50bd
3 changed files with 21 additions and 21 deletions

View File

@@ -138,8 +138,8 @@ int runner(bool isProcessElevated)
{
try
{
auto module = load_powertoy(moduleSubdir);
modules().emplace(module->get_key(), std::move(module));
auto pt_module = load_powertoy(moduleSubdir);
modules().emplace(pt_module->get_key(), std::move(pt_module));
}
catch (...)
{