summaryrefslogtreecommitdiff
path: root/Client/Source/Utilities/Assert.h
blob: 526ca32f96d73afabf63f08a7621753af9b051ef (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef ASSERT_H
#define ASSERT_H

#include <assert.h>

#define Assert(c)  assert((c))

#define DebugAssertIf(c) assert(c)
#define AssertIf(c) assert(c)

#endif