6 lines
116 B
C
6 lines
116 B
C
|
#pragma once
|
||
|
|
||
|
#include "log.h"
|
||
|
|
||
|
#define IM_ASSERT_USER_ERROR(expr,msg) do { if (!(expr)) { log(msg); } } while (0);
|