[DEV] correct a simple naming

This commit is contained in:
Edouard DUPIN 2013-10-22 21:30:21 +02:00
parent e6db301e5a
commit a8462354d8

View File

@ -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<MY_TYPE>& _obj) {
void swap(etk::Vector<MY_TYPE>& _obj) {
// avoid Swap of itself
if(this != &_obj) {
MY_TYPE* tmpData = m_data;