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:
Augustin Cavalier
2024-07-23 23:24:36 +00:00
committed by waddlesplash
parent ac702ffd21
commit b02996d1a8
@@ -27,19 +27,6 @@ struct SymbolLookupInfo {
const elf_version_info* version;
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,
const elf_version_info* version = NULL, uint32 flags = 0,
elf_sym* requestingSymbol = NULL)