blob: 59951c68c63d2d305df04a112af78dff5a070b6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
#ifndef TL_FILE_BASE_HPP
#define TL_FILE_BASE_HPP
#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
|