forked from organicmaps/organicmaps
Add base/swap.hpp and Swap() function.
This commit is contained in:
parent
0adf1ae55b
commit
0c37391aa8
2 changed files with 12 additions and 0 deletions
|
@ -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
11
base/swap.hpp
Normal 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);
|
||||
}
|
Loading…
Add table
Reference in a new issue