From 8cbb040a5c1cbb823f1809e08d65fbd9347682d8 Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Sat, 1 Jan 2022 17:23:08 +0100 Subject: [PATCH] cgraph: [nfc] remove whitespace in preprocessor directives in cghdr.h --- lib/cgraph/cghdr.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/cgraph/cghdr.h b/lib/cgraph/cghdr.h index aa52f4e2f..d6005612b 100644 --- a/lib/cgraph/cghdr.h +++ b/lib/cgraph/cghdr.h @@ -13,13 +13,13 @@ #include "config.h" #ifdef _WIN32 -# ifdef EXPORT_CGHDR -# define CGHDR_API __declspec(dllexport) -# else -# define CGHDR_API __declspec(dllimport) -# endif +#ifdef EXPORT_CGHDR +#define CGHDR_API __declspec(dllexport) #else -# define CGHDR_API extern +#define CGHDR_API __declspec(dllimport) +#endif +#else +#define CGHDR_API extern #endif #include -- 2.40.0