sequencer
assert.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <cassert>
4 
5 #ifdef SEQUENCER_DISABLE_ASSERT
6 #define SEQUENCER_ASSERT( cond )
7 #else
8 #define SEQUENCER_ASSERT( cond ) assert( cond );
9 #endif