mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
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;
|
||||
}
|
||||
|
||||
explicit Bitmap()
|
||||
Bitmap()
|
||||
: m_size(0)
|
||||
, m_owned(true)
|
||||
{
|
||||
m_data = nullptr;
|
||||
}
|
||||
|
||||
explicit Bitmap(size_t size, bool default_value)
|
||||
Bitmap(size_t size, bool default_value)
|
||||
: m_size(size)
|
||||
, m_owned(true)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue