/* (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 inline void assert(bool statement) { dbg_assert(statement, "assert!"); } template inline void swap(T &a, T &b) { T c = b; b = a; a = c; } #endif