#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