mirror of
https://github.com/x64dbg/x64dbg.git
synced 2024-11-27 06:40:24 +00:00
Fix compilation for 32-bit
This commit is contained in:
parent
c3bdb07ab6
commit
c69ab584fe
@ -1231,6 +1231,7 @@ bool ModRelocationsInRange(duint Address, duint Size, std::vector<MODRELOCATIONI
|
||||
return !Relocations.empty();
|
||||
}
|
||||
|
||||
#if _WIN64
|
||||
const RUNTIME_FUNCTION* MODINFO::findRuntimeFunction(DWORD rva) const
|
||||
{
|
||||
const auto found = std::lower_bound(runtimeFunctions.cbegin(), runtimeFunctions.cend(), rva, [](const RUNTIME_FUNCTION & a, const DWORD & rva)
|
||||
@ -1243,6 +1244,7 @@ const RUNTIME_FUNCTION* MODINFO::findRuntimeFunction(DWORD rva) const
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
#endif
|
||||
|
||||
bool MODINFO::loadSymbols(const String & pdbPath, bool forceLoad)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user