[gtk: 3/5] Dropped defined() for readability
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk: 3/5] Dropped defined() for readability
- Date: Sun, 13 Jun 2021 11:38:25 +0000 (UTC)
commit bc7b6a0e538ee661fae6db7e668a8bad4a42b91b
Author: scherek <scherek outlook com>
Date: Sat Jun 12 19:10:11 2021 +0200
Dropped defined() for readability
gtk/gtkpopcountprivate.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/gtk/gtkpopcountprivate.h b/gtk/gtkpopcountprivate.h
index 38c4d6f95e..e0eeb3fdf8 100644
--- a/gtk/gtkpopcountprivate.h
+++ b/gtk/gtkpopcountprivate.h
@@ -20,7 +20,7 @@
#pragma once
-#if defined(_MSC_VER) && !defined(_M_ARM) && !defined(_M_ARM64) && defined(__AVX__) || defined(__SSE4_2__)
|| defined(__POPCNT__)
+#if (_MSC_VER && !_M_ARM && !_M_ARM64) && (__AVX__ || __SSE4_2__ || __POPCNT__)
#include <intrin.h>
static inline guint
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]