summaryrefslogtreecommitdiff
path: root/zen/fixed_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/fixed_list.h')
-rw-r--r--zen/fixed_list.h4
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()
{
bgstack15