ddnet/src/base/tl/base.h

20 lines
237 B
C
Raw Normal View History

#ifndef TL_FILE_BASE_HPP
#define TL_FILE_BASE_HPP
2009-06-15 06:45:44 +00:00
#include <base/system.h>
inline void assert(bool statement)
{
dbg_assert(statement, "assert!");
}
template<class T>
inline void swap(T &a, T &b)
{
T c = b;
b = a;
a = c;
}
#endif