diff options
author | 2025-04-06 11:34:09 +0200 | |
---|---|---|
committer | 2025-04-06 11:34:09 +0200 | |
commit | 636ec1f53bf3087cdd33eb447d8a066ba80ae8f5 (patch) | |
tree | 3b29352623176b6831aaa30af4ddde7a5d7964fe /src/Array.cpp | |
parent | a6afb2229d14981bff00de103ecec397bc067e5a (diff) | |
download | libplist-636ec1f53bf3087cdd33eb447d8a066ba80ae8f5.tar.gz libplist-636ec1f53bf3087cdd33eb447d8a066ba80ae8f5.tar.bz2 |
C++: Explicitly initialize base class in copy constructor
Diffstat (limited to 'src/Array.cpp')
-rw-r--r-- | src/Array.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Array.cpp b/src/Array.cpp index d739c64..7051ed9 100644 --- a/src/Array.cpp +++ b/src/Array.cpp @@ -53,7 +53,7 @@ Array::Array(plist_t node, Node* parent) : Structure(parent) array_fill(this, _array, _node); } -Array::Array(const PList::Array& a) +Array::Array(const PList::Array& a) : Structure(a.GetParent()) { _array.clear(); _node = plist_copy(a.GetPlist()); |