From d7f0304aec86b275e0888463964d0f159512506a Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 11 Feb 2016 13:24:29 -0500 Subject: [PATCH] common: fix build error with Graylog Graylog includes boost stuff, which clobbers our assert macros. Signed-off-by: Sage Weil --- src/common/Graylog.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/Graylog.h b/src/common/Graylog.h index bac437f1d1c..c5fee43f56f 100644 --- a/src/common/Graylog.h +++ b/src/common/Graylog.h @@ -12,6 +12,7 @@ #include #include "include/memory.h" +#include "include/assert.h" // boost clobbers this struct uuid_d; class LogEntry;