summaryrefslogtreecommitdiff
path: root/platform/qt/src/qt_geojson.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/qt/src/qt_geojson.cpp')
-rw-r--r--platform/qt/src/qt_geojson.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/platform/qt/src/qt_geojson.cpp b/platform/qt/src/qt_geojson.cpp
index 9d0a3e96eb..cd808f016c 100644
--- a/platform/qt/src/qt_geojson.cpp
+++ b/platform/qt/src/qt_geojson.cpp
@@ -79,11 +79,7 @@ mbgl::Value asMapboxGLPropertyValue(const QVariant &value) {
};
switch (value.type()) {
-#if QT_VERSION >= 0x050000
case QMetaType::UnknownType:
-#else
- case QVariant::Invalid:
-#endif
return mbgl::NullValue {};
case QMetaType::Bool:
return { value.toBool() };
@@ -107,11 +103,7 @@ mbgl::Value asMapboxGLPropertyValue(const QVariant &value) {
mbgl::FeatureIdentifier asMapboxGLFeatureIdentifier(const QVariant &id) {
switch (id.type()) {
-#if QT_VERSION >= 0x050000
case QMetaType::UnknownType:
-#else
- case QVariant::Invalid:
-#endif
return {};
case QMetaType::ULongLong:
return { uint64_t(id.toULongLong()) };