Index: src/libcfa/containers/vector
===================================================================
--- src/libcfa/containers/vector	(revision 6d665d93945a1e5430c7982fa468a2af88596f06)
+++ src/libcfa/containers/vector	(revision 126e54f5a9e0cc677c29a53eb37c7eb67e262890)
@@ -1,10 +1,10 @@
-// 
+//
 // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
 //
 // The contents of this file are covered under the licence agreement in the
 // file "LICENCE" distributed with Cforall.
-// 
-// vector -- 
-// 
+//
+// vector --
+//
 // Author           : Thierry Delisle
 // Created On       : Tue Jul  5 18:00:07 2016
@@ -12,5 +12,5 @@
 // Last Modified On : Tue Jul  5 18:01:35 2016
 // Update Count     : 2
-// 
+//
 
 #pragma once
@@ -28,5 +28,5 @@
 	void ctor(allocator_t* const);
 	void dtor(allocator_t* const);
-	void realloc(allocator_t* const, size_t);
+	void realloc_storage(allocator_t* const, size_t);
 	T* data(allocator_t* const);
 };
@@ -64,5 +64,5 @@
 static inline void reserve(vector(T, allocator_t) *const this, size_t size)
 {
-	realloc(&this->storage, this->size+1);
+	realloc_storage(&this->storage, this->size+1);
 }
 
@@ -146,5 +146,5 @@
 
 forall(otype T)
-void realloc(heap_allocator(T) *const this, size_t size);
+void realloc_storage(heap_allocator(T) *const this, size_t size);
 
 forall(otype T)
Index: src/libcfa/containers/vector.c
===================================================================
--- src/libcfa/containers/vector.c	(revision 6d665d93945a1e5430c7982fa468a2af88596f06)
+++ src/libcfa/containers/vector.c	(revision 126e54f5a9e0cc677c29a53eb37c7eb67e262890)
@@ -1,10 +1,10 @@
-// 
+//
 // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
 //
 // The contents of this file are covered under the licence agreement in the
 // file "LICENCE" distributed with Cforall.
-// 
-// vector.c -- 
-// 
+//
+// vector.c --
+//
 // Author           : Thierry Delisle
 // Created On       : Tue Jul  5 18:07:52 2016
@@ -12,7 +12,7 @@
 // Last Modified On : Tue Jul  5 18:08:31 2016
 // Update Count     : 2
-// 
+//
 
-#include <containers/vector> 
+#include <containers/vector>
 
 #include <stdlib>
@@ -39,5 +39,5 @@
 void push_back(vector(T, allocator_t) *const this, T value)
 {
-	realloc(&this->storage, this->size+1);
+	realloc_storage(&this->storage, this->size+1);
 	data(&this->storage)[this->size] = value;
 	this->size++;
@@ -77,5 +77,5 @@
 
 forall(otype T)
-inline void realloc(heap_allocator(T) *const this, size_t size)
+inline void realloc_storage(heap_allocator(T) *const this, size_t size)
 {
 	enum { GROWTH_RATE = 2 };
