summaryrefslogtreecommitdiff
path: root/sigc++config.h.meson
diff options
context:
space:
mode:
Diffstat (limited to 'sigc++config.h.meson')
-rw-r--r--sigc++config.h.meson46
1 files changed, 23 insertions, 23 deletions
diff --git a/sigc++config.h.meson b/sigc++config.h.meson
index 913660d..47cbd80 100644
--- a/sigc++config.h.meson
+++ b/sigc++config.h.meson
@@ -16,20 +16,20 @@
/* Detect Win32 platform */
#ifdef _WIN32
-# if defined(_MSC_VER)
-# define SIGC_MSC 1
-# define SIGC_WIN32 1
-# define SIGC_DLL 1
-# elif defined(__CYGWIN__)
-# define SIGC_CONFIGURE 1
-# elif defined(__MINGW32__)
-# define SIGC_WIN32 1
-# define SIGC_CONFIGURE 1
-# else
-# error "libsigc++ config: Unknown win32 architecture (send me gcc --dumpspecs or equiv)"
-# endif
+#if defined(_MSC_VER)
+#define SIGC_MSC 1
+#define SIGC_WIN32 1
+#define SIGC_DLL 1
+#elif defined(__CYGWIN__)
+#define SIGC_CONFIGURE 1
+#elif defined(__MINGW32__)
+#define SIGC_WIN32 1
+#define SIGC_CONFIGURE 1
+#else
+#error "libsigc++ config: Unknown win32 architecture (send me gcc --dumpspecs or equiv)"
+#endif
#else /* !_WIN32 */
-# define SIGC_CONFIGURE 1
+#define SIGC_CONFIGURE 1
#endif /* !_WIN32 */
#ifdef SIGC_MSC
@@ -45,9 +45,9 @@
* seems to have no adverse effects, so that seems like a good enough
* solution for now.
*/
-# pragma warning(disable:4251)
+#pragma warning(disable : 4251)
-#if (_MSC_VER < 1900) && !defined (noexcept)
+#if (_MSC_VER < 1900) && !defined(noexcept)
#define _ALLOW_KEYWORD_MACROS 1
#define noexcept _NOEXCEPT
#endif
@@ -57,15 +57,15 @@
#endif /* !SIGC_MSC */
#ifdef SIGC_DLL
-# if defined(SIGC_BUILD) && defined(_WINDLL)
-# define SIGC_API __declspec(dllexport)
-# elif !defined(SIGC_BUILD)
-# define SIGC_API __declspec(dllimport)
-# else
-# define SIGC_API
-# endif
+#if defined(SIGC_BUILD) && defined(_WINDLL)
+#define SIGC_API __declspec(dllexport)
+#elif !defined(SIGC_BUILD)
+#define SIGC_API __declspec(dllimport)
+#else
+#define SIGC_API
+#endif
#else /* !SIGC_DLL */
-# define SIGC_API
+#define SIGC_API
#endif /* !SIGC_DLL */
#endif /* !SIGCXXCONFIG_H_INCLUDED */