Index: src/libcfa/containers/vector
===================================================================
--- src/libcfa/containers/vector	(revision a9fc180fb0f333027273fa4a12cf9efe6943f5f5)
+++ src/libcfa/containers/vector	(revision dd0b96160826f69b3ebeccd0edfccb59699d00ab)
@@ -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;
+// }
 
 //------------------------------------------------------------------------------
