1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +00:00

AK: Undo bogus Variant::downcast() rename

I accidentally renamed these to verify_cast() when doing the global
AK::downcast() rename.
This commit is contained in:
Andreas Kling 2021-06-26 21:22:49 +02:00
parent 337ad6d15c
commit beb43f673e
4 changed files with 6 additions and 6 deletions

View file

@ -397,7 +397,7 @@ Optional<InstantiationError> AbstractMachine::allocate_all_initial_phase(Module
module_instance.exports().append(ExportInstance {
entry.name(),
move(address).verify_cast<FunctionAddress, TableAddress, MemoryAddress, GlobalAddress>(),
move(address).downcast<FunctionAddress, TableAddress, MemoryAddress, GlobalAddress>(),
});
}
});