aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/qml/jsruntime/qv4value_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4value_p.h b/src/qml/jsruntime/qv4value_p.h
index d49dde2557..17aea4e022 100644
--- a/src/qml/jsruntime/qv4value_p.h
+++ b/src/qml/jsruntime/qv4value_p.h
@@ -292,7 +292,7 @@ public:
inline bool isNullOrUndefined() const { return isNull() || isUndefined(); }
inline bool isNumber() const { return quickType() >= QT_Int; }
-#if QT_POINTER_SIZE == 8
+#if /*QT_POINTER_SIZE ==*/ 8 // TODO: check if we need specialized versions for 32bit
inline bool isUndefined() const { return _val == 0; }
inline bool isDouble() const { return (_val >> IsDouble_Shift); }
inline bool isManaged() const { return _val && ((_val >> IsManagedOrUndefined_Shift) == 0); }