1
Fork 0
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:
howar6hill 2020-03-02 16:50:22 +08:00 committed by GitHub
parent 12504b52d2
commit 4ed2ba264d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)
{ {