1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 16:55:09 +00:00

AK: Rename Bitmap::try_create() to ::create()

This is step 1 to removing `must_create()`.
This commit is contained in:
Sam Atkins 2022-12-20 16:34:13 +00:00 committed by Andreas Kling
parent c4e8509aac
commit bed5961fc2
5 changed files with 8 additions and 8 deletions

View file

@ -14,7 +14,7 @@ namespace Kernel::PCI {
HostController::HostController(PCI::Domain const& domain)
: m_domain(domain)
, m_enumerated_buses(Bitmap::try_create(256, false).release_value_but_fixme_should_propagate_errors())
, m_enumerated_buses(Bitmap::create(256, false).release_value_but_fixme_should_propagate_errors())
{
}