diff options
| author | 2023-04-21 15:44:20 +0200 | |
|---|---|---|
| committer | 2023-04-21 15:44:20 +0200 | |
| commit | 7b94db81220316250bc124830c2f0ed5fd78ec62 (patch) | |
| tree | 1a2fa44b28e4cf85ae5a21ad01cd69413c73465c /include/plist/Array.h | |
| parent | 8c2844c2c220c9c745c3adde4a0a526e7279f9b4 (diff) | |
| download | libplist-7b94db81220316250bc124830c2f0ed5fd78ec62.tar.gz libplist-7b94db81220316250bc124830c2f0ed5fd78ec62.tar.bz2 | |
Remove unnecessary const to silence compiler warning
Diffstat (limited to 'include/plist/Array.h')
| -rw-r--r-- | include/plist/Array.h | 2 |
1 files changed, 1 insertions, 1 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); |
