Index: src/libcfa/containers/vector
===================================================================
--- src/libcfa/containers/vector	(revision a6151baa3a12bfe16ad97aa148f11da6d2d8d4c3)
+++ src/libcfa/containers/vector	(revision b16898e15cca72a9db8a280714dbc0100e4abffa)
@@ -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)
