sequencer
include
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
Generated on Thu May 13 2021 16:06:04 for sequencer by
1.8.13