mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
[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:
parent
54e40008c9
commit
cc6826fc3a
1 changed files with 1 additions and 2 deletions
|
@ -108,8 +108,7 @@ Variant::Variant (const Variant& other)
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
Variant::Variant (const bool value)
|
Variant::Variant (const bool value)
|
||||||
: _type (Variant::type_boolean)
|
: _bool (value)
|
||||||
, _bool (value)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue