From 4ed2ba264d7030408e5dcf38cc59a97e35b06b46 Mon Sep 17 00:00:00 2001 From: howar6hill Date: Mon, 2 Mar 2020 16:50:22 +0800 Subject: [PATCH] AK: Remove superfluous explicit in Bitmap (#1337) --- AK/Bitmap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AK/Bitmap.h b/AK/Bitmap.h index dff3a61b50e..2d3d32d2188 100644 --- a/AK/Bitmap.h +++ b/AK/Bitmap.h @@ -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) {