From aa450796af628119e4348f10b6d45c282ed68bbe Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Sat, 30 May 2020 20:09:18 -0700 Subject: c++: Remove redundant initialization [clang-tidy] Found with readability-redundant-member-init Signed-off-by: Rosen Penev --- src/Array.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Array.cpp') diff --git a/src/Array.cpp b/src/Array.cpp index 4f34e58..f6e1297 100644 --- a/src/Array.cpp +++ b/src/Array.cpp @@ -51,7 +51,7 @@ Array::Array(plist_t node, Node* parent) : Structure(parent) array_fill(this, _array, _node); } -Array::Array(const PList::Array& a) : Structure() +Array::Array(const PList::Array& a) { _array.clear(); _node = plist_copy(a.GetPlist()); -- cgit v1.1-32-gdbae