mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:17:35 +00:00
AK: Remove superfluous explicit in Bitmap (#1337)
This commit is contained in:
parent
12504b52d2
commit
4ed2ba264d
1 changed files with 2 additions and 2 deletions
|
@ -199,14 +199,14 @@ public:
|
||||||
return first_index;
|
return first_index;
|
||||||
}
|
}
|
||||||
|
|
||||||
explicit Bitmap()
|
Bitmap()
|
||||||
: m_size(0)
|
: m_size(0)
|
||||||
, m_owned(true)
|
, m_owned(true)
|
||||||
{
|
{
|
||||||
m_data = nullptr;
|
m_data = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
explicit Bitmap(size_t size, bool default_value)
|
Bitmap(size_t size, bool default_value)
|
||||||
: m_size(size)
|
: m_size(size)
|
||||||
, m_owned(true)
|
, m_owned(true)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue