AK: Remove superfluous explicit in Bitmap (#1337)
This commit is contained in:
parent
12504b52d2
commit
4ed2ba264d
Notes:
sideshowbarker
2024-07-19 17:38:17 +09:00
Author: https://github.com/f-eiwu Commit: https://github.com/SerenityOS/serenity/commit/4ed2ba264d7 Pull-request: https://github.com/SerenityOS/serenity/pull/1337
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
Reference in a new issue