gimo v0.1.0
Loading...
Searching...
No Matches
Config.hpp
Go to the documentation of this file.
1// Copyright Dominic (DNKpp) Koepke 2025
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at
4// https://www.boost.org/LICENSE_1_0.txt)
5
6#ifndef GIMO_CONFIG_HPP
7#define GIMO_CONFIG_HPP
8
9#ifndef GIMO_ASSERT
10 #include <cassert>
11 #define GIMO_ASSERT(condition, msg, ...) assert((condition) && msg)
12#endif
13
14#endif