Index: src/libcfa/containers/vector
===================================================================
--- src/libcfa/containers/vector	(revision bb82c03bc8335801bc35bfe955fe778079574ec8)
+++ src/libcfa/containers/vector	(revision 52c14b38a7806747cf75c7dbf3ad4e40b240a03f)
@@ -118,9 +118,9 @@
 }
 
-forall(otype T, otype allocator_t | allocator_c(T, allocator_t))
-static inline const T* cbegin(const vector(T, allocator_t)* this)
-{
-	return data(&this->storage);
-}
+// forall(otype T, otype allocator_t | allocator_c(T, allocator_t))
+// static inline const T* cbegin(const vector(T, allocator_t)* this)
+// {
+// 	return data(&this->storage);
+// }
 
 forall(otype T, otype allocator_t | allocator_c(T, allocator_t))
@@ -130,9 +130,9 @@
 }
 
-forall(otype T, otype allocator_t | allocator_c(T, allocator_t))
-static inline const T* cend(const vector(T, allocator_t)* this)
-{
-	return data(&this->storage) + this->size;
-}
+// forall(otype T, otype allocator_t | allocator_c(T, allocator_t))
+// static inline const T* cend(const vector(T, allocator_t)* this)
+// {
+// 	return data(&this->storage) + this->size;
+// }
 
 //------------------------------------------------------------------------------
