From: Lucian Petrut Date: Tue, 8 Oct 2019 11:59:41 +0000 (+0300) Subject: include/buffer: Extend win32 platform check X-Git-Tag: wip-pdonnell-testing-20200918.022351~1036^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=69b362269a719b38da225e80b37add31265eac81;p=ceph-ci.git include/buffer: Extend win32 platform check is unavailable on Windows. There's a check for __CYGWIN__ that will have to be extended to look for _WIN32. Signed-off-by: Lucian Petrut --- diff --git a/src/include/buffer.h b/src/include/buffer.h index 3f00dbcc2a5..a895e1c967a 100644 --- a/src/include/buffer.h +++ b/src/include/buffer.h @@ -34,7 +34,7 @@ #include #include -#ifndef __CYGWIN__ +#if !defined(__CYGWIN__) && !defined(_WIN32) # include #endif