Remove CHECK_F Macro

This commit is contained in:
W. Felix Handte 2019-01-28 17:16:32 -05:00
parent 64bb6640f2
commit 7ebd897157

View File

@ -53,7 +53,7 @@ extern "C" {
#undef MAX
#define MIN(a,b) ((a)<(b) ? (a) : (b))
#define MAX(a,b) ((a)>(b) ? (a) : (b))
#define CHECK_F(f) { size_t const errcod = f; if (ERR_isError(errcod)) return errcod; } /* check and Forward error code */
#define CHECK_E(f, e) { size_t const errcod = f; if (ERR_isError(errcod)) return ERROR(e); } /* check and send Error code */
/**