Skip to content

Commit

Permalink
Fixing a compilation error on GCC.
Browse files Browse the repository at this point in the history
  • Loading branch information
JusticeRage committed Nov 26, 2018
1 parent e4d9254 commit 7179cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manape/imports.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ bool PE::_parse_import_lookup_table(unsigned int offset, pImportedLibrary librar
}

// Verify that the import is not already in the list (avoid parsing loops)
auto found = std::find_if(imports->begin(), imports->end(), [import](const auto& it)->bool
auto found = std::find_if(imports->begin(), imports->end(), [import](const pimport_lookup_table& it)->bool
{
return import->AddressOfData == it->AddressOfData &&
import->Hint == it->Hint &&
Expand Down

0 comments on commit 7179cf8

Please sign in to comment.