summaryrefslogtreecommitdiffstats
path: root/include/plist/Integer.h
diff options
context:
space:
mode:
authorGravatar Rosen Penev2020-12-21 20:04:57 -0800
committerGravatar Nikias Bassen2021-06-22 01:18:28 +0200
commit8c7e258e80c632c2d1d1eaa93cef8358a898045b (patch)
tree850633b8c9303b52f175ffbb94a2338fec570173 /include/plist/Integer.h
parent904cbea78fb91438eafc867ccd8a9f9ab66eb5ec (diff)
downloadlibplist-8c7e258e80c632c2d1d1eaa93cef8358a898045b.tar.gz
libplist-8c7e258e80c632c2d1d1eaa93cef8358a898045b.tar.bz2
[clang-tidy] cpp: Turn reference operators to const
Found with cppcoreguidelines-c-copy-assignment-signature Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'include/plist/Integer.h')
-rw-r--r--include/plist/Integer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/plist/Integer.h b/include/plist/Integer.h
index adbc39a..bdabc6f 100644
--- a/include/plist/Integer.h
+++ b/include/plist/Integer.h
@@ -33,7 +33,7 @@ public :
33 Integer(Node* parent = NULL); 33 Integer(Node* parent = NULL);
34 Integer(plist_t node, Node* parent = NULL); 34 Integer(plist_t node, Node* parent = NULL);
35 Integer(const Integer& i); 35 Integer(const Integer& i);
36 Integer& operator=(Integer& i); 36 Integer& operator=(const Integer& i);
37 Integer(uint64_t i); 37 Integer(uint64_t i);
38 virtual ~Integer(); 38 virtual ~Integer();
39 39