diff options
| author | 2023-04-21 15:44:20 +0200 | |
|---|---|---|
| committer | 2023-04-21 15:44:20 +0200 | |
| commit | 7b94db81220316250bc124830c2f0ed5fd78ec62 (patch) | |
| tree | 1a2fa44b28e4cf85ae5a21ad01cd69413c73465c /include | |
| parent | 8c2844c2c220c9c745c3adde4a0a526e7279f9b4 (diff) | |
| download | libplist-7b94db81220316250bc124830c2f0ed5fd78ec62.tar.gz libplist-7b94db81220316250bc124830c2f0ed5fd78ec62.tar.bz2 | |
Remove unnecessary const to silence compiler warning
Diffstat (limited to 'include')
| -rw-r--r-- | include/plist/Array.h | 2 | ||||
| -rw-r--r-- | include/plist/Dictionary.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/plist/Array.h b/include/plist/Array.h index 5a685e1..0239c78 100644 --- a/include/plist/Array.h +++ b/include/plist/Array.h | |||
| @@ -51,7 +51,7 @@ public : | |||
| 51 | const_iterator begin() const; | 51 | const_iterator begin() const; |
| 52 | const_iterator End() const; | 52 | const_iterator End() const; |
| 53 | const_iterator end() const; | 53 | const_iterator end() const; |
| 54 | const size_t size() const; | 54 | size_t size() const; |
| 55 | void Append(Node* node); | 55 | void Append(Node* node); |
| 56 | void Insert(Node* node, unsigned int pos); | 56 | void Insert(Node* node, unsigned int pos); |
| 57 | void Remove(Node* node); | 57 | void Remove(Node* node); |
diff --git a/include/plist/Dictionary.h b/include/plist/Dictionary.h index b4d49ba..583a430 100644 --- a/include/plist/Dictionary.h +++ b/include/plist/Dictionary.h | |||
| @@ -53,7 +53,7 @@ public : | |||
| 53 | const_iterator begin() const; | 53 | const_iterator begin() const; |
| 54 | const_iterator End() const; | 54 | const_iterator End() const; |
| 55 | const_iterator end() const; | 55 | const_iterator end() const; |
| 56 | const size_t size() const; | 56 | size_t size() const; |
| 57 | const_iterator Find(const std::string& key) const; | 57 | const_iterator Find(const std::string& key) const; |
| 58 | iterator Set(const std::string& key, const Node* node); | 58 | iterator Set(const std::string& key, const Node* node); |
| 59 | iterator Set(const std::string& key, const Node& node); | 59 | iterator Set(const std::string& key, const Node& node); |
