From: Lucian Petrut Date: Tue, 8 Oct 2019 11:59:41 +0000 (+0300) Subject: include/buffer: Extend win32 platform check X-Git-Tag: v16.1.0~2099^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=69b362269a719b38da225e80b37add31265eac81;p=ceph.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 3f00dbcc2a507..a895e1c967ab3 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