Commit cbc83c85 authored by Daniel Verkamp's avatar Daniel Verkamp
Browse files

assert.h: remove unused SPDK_CONCAT macro



Change-Id: Ib0cff3720ae3f0dc20df655923acfa2dd70ced13
Signed-off-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
parent 19d56fea
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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