Remove CHECK_E Macro

dev
W. Felix Handte 2019-01-28 17:28:14 -05:00
parent 03e040a966
commit 2179ce00e1
1 changed files with 0 additions and 2 deletions

View File

@ -54,8 +54,6 @@ extern "C" {
#define MIN(a,b) ((a)<(b) ? (a) : (b))
#define MAX(a,b) ((a)>(b) ? (a) : (b))
#define CHECK_E(f, e) { size_t const errcod = f; if (ERR_isError(errcod)) return ERROR(e); } /* check and send Error code */
/**
* Return the specified error if the condition evaluates to true.
*