From 678b4fe10802a50f287891b3d3e5b548a458255b Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Sun, 20 Jun 2021 21:26:08 +0300 Subject: [PATCH] remove unused QTypeInfo::isPointer enum [ci reset] Signed-off-by: Ivailo Monev --- src/core/global/qglobal.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/core/global/qglobal.h b/src/core/global/qglobal.h index 78c97bbd0..5a6596c37 100644 --- a/src/core/global/qglobal.h +++ b/src/core/global/qglobal.h @@ -711,7 +711,6 @@ class QTypeInfo { public: enum { - isPointer = false, isComplex = true, isStatic = true, isLarge = (sizeof(T) > QT_POINTER_SIZE) @@ -723,7 +722,6 @@ class QTypeInfo { public: enum { - isPointer = true, isComplex = false, isStatic = false, isLarge = false @@ -753,7 +751,6 @@ public: \ isComplex = (((FLAGS) & Q_PRIMITIVE_TYPE) == 0), \ isStatic = (((FLAGS) & (Q_MOVABLE_TYPE | Q_PRIMITIVE_TYPE)) == 0), \ isLarge = (sizeof(TYPE) > QT_POINTER_SIZE), \ - isPointer = false \ }; \ static inline const char *name() { return #TYPE; } \ } -- 2.11.0