From a8462354d803970b15fc0df5f16ca737c817ed54 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Tue, 22 Oct 2013 21:30:21 +0200 Subject: [PATCH] [DEV] correct a simple naming --- etk/Vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etk/Vector.h b/etk/Vector.h index 5635382..6da375c 100644 --- a/etk/Vector.h +++ b/etk/Vector.h @@ -217,7 +217,7 @@ namespace etk * @brief Swap the data of 2 Vectors * @param[in] _obj second vector to swap data. */ - void wwap(etk::Vector& _obj) { + void swap(etk::Vector& _obj) { // avoid Swap of itself if(this != &_obj) { MY_TYPE* tmpData = m_data;