[clang-tidy] Remove redundant init

Found with modernize-use-default-member-init

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2019-09-27 20:18:22 -07:00 committed by Paul Beckingham
parent 54e40008c9
commit cc6826fc3a

View file

@ -108,8 +108,7 @@ Variant::Variant (const Variant& other)
////////////////////////////////////////////////////////////////////////////////
Variant::Variant (const bool value)
: _type (Variant::type_boolean)
, _bool (value)
: _bool (value)
{
}