summaryrefslogtreecommitdiff
path: root/zen/fixed_list.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2015-10-02 14:54:58 +0200
committerDaniel Wilhelm <daniel@wili.li>2015-10-02 14:54:58 +0200
commitbb807ea0fd605c486bb7ec928ad8edc819ec9c2b (patch)
tree16fdbd4d91a290d43444dd812720c42948b27754 /zen/fixed_list.h
parent6.14 (diff)
downloadFreeFileSync-bb807ea0fd605c486bb7ec928ad8edc819ec9c2b.tar.gz
FreeFileSync-bb807ea0fd605c486bb7ec928ad8edc819ec9c2b.tar.bz2
FreeFileSync-bb807ea0fd605c486bb7ec928ad8edc819ec9c2b.zip
6.15
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 2a577f13..a1f83eb4 100644
--- a/zen/fixed_list.h
+++ b/zen/fixed_list.h
@@ -60,8 +60,8 @@ public:
const_iterator begin() const { return firstInsert; }
const_iterator end () const { return const_iterator(); }
- const_iterator cbegin() const { return firstInsert; }
- const_iterator cend () const { return const_iterator(); }
+ //const_iterator cbegin() const { return firstInsert; }
+ //const_iterator cend () const { return const_iterator(); }
reference front() { return firstInsert->val; }
const_reference front() const { return firstInsert->val; }
bgstack15