Add base/swap.hpp and Swap() function.

This commit is contained in:
Yury Melnichek 2011-05-16 23:49:30 +02:00 committed by Alex Zolotarev
parent 0adf1ae55b
commit 0c37391aa8
2 changed files with 12 additions and 0 deletions

View file

@ -42,6 +42,7 @@ HEADERS += \
logging.hpp \
start_mem_debug.hpp \
stop_mem_debug.hpp \
swap.hpp \
thread.hpp \
mutex.hpp \
casts.hpp \

11
base/swap.hpp Normal file
View file

@ -0,0 +1,11 @@
#pragma once
#include "../std/algorithm.hpp"
// Calls swap() function using argument dependant lookup.
// Do NOT override this function, but override swap() function instead!
template <typename T> inline void Swap(T & a, T & b)
{
using std::swap;
swap(a, b);
}