diff options
author | Daniel Wilhelm <daniel@wili.li> | 2015-10-02 14:52:04 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2015-10-02 14:52:04 +0200 |
commit | 1845c028b8cb8496d1d78f0da738120e1c31401a (patch) | |
tree | adf9fb436aea09be367aef8ed3b6cdbf6a46e34c /zen/fixed_list.h | |
parent | 6.7 (diff) | |
download | FreeFileSync-1845c028b8cb8496d1d78f0da738120e1c31401a.tar.gz FreeFileSync-1845c028b8cb8496d1d78f0da738120e1c31401a.tar.bz2 FreeFileSync-1845c028b8cb8496d1d78f0da738120e1c31401a.zip |
6.8
Diffstat (limited to 'zen/fixed_list.h')
-rw-r--r-- | zen/fixed_list.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zen/fixed_list.h b/zen/fixed_list.h index 7e35f012..63ef3f2f 100644 --- a/zen/fixed_list.h +++ b/zen/fixed_list.h @@ -129,8 +129,8 @@ public: size_t size() const { return sz; } private: - FixedList(const FixedList&); - FixedList& operator=(const FixedList&); + FixedList (const FixedList&) = delete; + FixedList& operator=(const FixedList&) = delete; void pushNode(Node* newNode) //throw() { |