summaryrefslogtreecommitdiff
path: root/assert.h
blob: 84f54718366a4f36b60ed89451f09d12ff64d3c1 (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#ifdef NDEBUG
#undef NDEBUG
#include <assert.h>
#define NDEBUG
#else
#include <assert.h>
#endif