runtime_loader: Drop the first version of the SymbolLookupInfo constructor.
Nothing uses it, and it just allowed for mistakes like the one corrected in the last commit to go unnoticed. Change-Id: I5a64b45eb6f1f9abc9f98be14c9ff6d04c2814fa Reviewed-on: https://review.haiku-os.org/c/haiku/+/7853 Haiku-Format: Haiku-format Bot <[email protected]> Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
committed by
waddlesplash
parent
ac702ffd21
commit
b02996d1a8
@@ -27,19 +27,6 @@ struct SymbolLookupInfo {
|
|||||||
const elf_version_info* version;
|
const elf_version_info* version;
|
||||||
elf_sym* requestingSymbol;
|
elf_sym* requestingSymbol;
|
||||||
|
|
||||||
SymbolLookupInfo(const char* name, int32 type, uint32 hash,
|
|
||||||
const elf_version_info* version = NULL, uint32 flags = 0,
|
|
||||||
elf_sym* requestingSymbol = NULL)
|
|
||||||
:
|
|
||||||
name(name),
|
|
||||||
type(type),
|
|
||||||
hash(hash),
|
|
||||||
flags(flags),
|
|
||||||
version(version),
|
|
||||||
requestingSymbol(requestingSymbol)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
SymbolLookupInfo(const char* name, int32 type,
|
SymbolLookupInfo(const char* name, int32 type,
|
||||||
const elf_version_info* version = NULL, uint32 flags = 0,
|
const elf_version_info* version = NULL, uint32 flags = 0,
|
||||||
elf_sym* requestingSymbol = NULL)
|
elf_sym* requestingSymbol = NULL)
|
||||||
|
|||||||
Reference in New Issue
Block a user