assert.h: remove unused SPDK_CONCAT macro

Change-Id: Ib0cff3720ae3f0dc20df655923acfa2dd70ced13
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
This commit is contained in:
Daniel Verkamp 2016-11-16 14:48:28 -07:00
parent 19d56fead7
commit cbc83c85db

View File

@ -45,9 +45,6 @@ extern "C" {
#include <assert.h>
#include <stdlib.h>
#define SPDK_CONCAT_(x, y) x##y
#define SPDK_CONCAT(x, y) SPDK_CONCAT_(x, y)
#ifdef static_assert
#define SPDK_STATIC_ASSERT(cond, msg) static_assert(cond, msg)
#else