aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Erb <erb@suitabletech.com>2018-11-16 20:36:19 -0500
committerLars Knoll <lars.knoll@qt.io>2018-11-19 08:11:56 +0000
commit75937c9da7910ce41b4b3207d66d844ed9624df8 (patch)
tree58127f0a466de2cc60896166f33ac1176c43b719
parent435cbb65ef6280f7b8417cb03754765f8289419d (diff)
Fix signed/unsigned warning in VS 2017
Task-number: QTBUG-71862 Change-Id: I836756d004753420bfb7a00013ade0229bd5946e Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Lars Knoll <lars.knoll@qt.io>
-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 7c895e3637..20a84beccd 100644
--- a/src/qml/jsruntime/qv4value_p.h
+++ b/src/qml/jsruntime/qv4value_p.h
@@ -226,7 +226,7 @@ struct Q_QML_PRIVATE_EXPORT Value
};
// Used only by 64-bit encoding
- static const quint64 NaNEncodeMask = 0xfffc000000000000ll;
+ static const quint64 NaNEncodeMask = 0xfffc000000000000ull;
enum {
IsDouble_Shift = 64-14,
IsManagedOrUndefined_Shift = 64-15,