From 0ff20a6590a7039c4ac89866a43a85792d589e8a Mon Sep 17 00:00:00 2001 From: Jan Steemann Date: Thu, 4 Feb 2016 12:32:56 +0100 Subject: [PATCH] try to work around compiler warning --- lib/Basics/Common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Basics/Common.h b/lib/Basics/Common.h index 1deae21e20..68306a1fa0 100644 --- a/lib/Basics/Common.h +++ b/lib/Basics/Common.h @@ -194,7 +194,7 @@ static inline uint32_t TRI_64to32(uint64_t x) { #else #ifndef TRI_ASSERT -#define TRI_ASSERT(expr) while (0) +#define TRI_ASSERT(expr) do { } while (0) #endif #endif