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:
parent
c4e8509aac
commit
bed5961fc2
5 changed files with 8 additions and 8 deletions
|
@ -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())
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue