gemma.cpp/CL_Wrapper/custom_assert.h

6 lines
148 B
C

#pragma once
#include <assert.h>
#define ASSERT_EQ(a,b) assert(a==b)
#define ASSERT_UEQ(a,b) assert(a!=b)
#define ASSERT_NO_STRING(a) assert(a!="")