diff options
| author | 2020-05-30 20:09:18 -0700 | |
|---|---|---|
| committer | 2020-06-03 19:59:53 +0200 | |
| commit | aa450796af628119e4348f10b6d45c282ed68bbe (patch) | |
| tree | 0c699fd4dbb55521c73e60a2590852338020386d /src/Dictionary.cpp | |
| parent | 7c69e03ba2fb07ccac0b088331dae02216d37cba (diff) | |
| download | libplist-aa450796af628119e4348f10b6d45c282ed68bbe.tar.gz libplist-aa450796af628119e4348f10b6d45c282ed68bbe.tar.bz2 | |
c++: Remove redundant initialization
[clang-tidy] Found with readability-redundant-member-init
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'src/Dictionary.cpp')
| -rw-r--r-- | src/Dictionary.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Dictionary.cpp b/src/Dictionary.cpp index 4fd73ef..cc4626b 100644 --- a/src/Dictionary.cpp +++ b/src/Dictionary.cpp | |||
| @@ -50,7 +50,7 @@ Dictionary::Dictionary(plist_t node, Node* parent) : Structure(parent) | |||
| 50 | dictionary_fill(this, _map, _node); | 50 | dictionary_fill(this, _map, _node); |
| 51 | } | 51 | } |
| 52 | 52 | ||
| 53 | Dictionary::Dictionary(const PList::Dictionary& d) : Structure() | 53 | Dictionary::Dictionary(const PList::Dictionary& d) |
| 54 | { | 54 | { |
| 55 | for (Dictionary::iterator it = _map.begin(); it != _map.end(); it++) | 55 | for (Dictionary::iterator it = _map.begin(); it != _map.end(); it++) |
| 56 | { | 56 | { |
