summaryrefslogtreecommitdiffstats
path: root/src/corelib/text/qstringview.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/text/qstringview.h')
-rw-r--r--src/corelib/text/qstringview.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/corelib/text/qstringview.h b/src/corelib/text/qstringview.h
index bc2c25f83d7..dc929902faf 100644
--- a/src/corelib/text/qstringview.h
+++ b/src/corelib/text/qstringview.h
@@ -202,13 +202,6 @@ public:
template <typename Char>
Q_DECL_CONSTEXPR QStringView(const Char *str) noexcept;
#else
-#if QT_DEPRECATED_SINCE(5, 14)
- template <typename Array, if_compatible_array<Array> = true>
- QT_DEPRECATED_VERSION_X_5_14(R"(Use u"~~~" or QStringView(u"~~~") instead of QStringViewLiteral("~~~"))")
- Q_DECL_CONSTEXPR QStringView(const Array &str, QtPrivate::Deprecated_t) noexcept
- : QStringView(str, lengthHelperArray(str)) {}
-#endif // QT_DEPRECATED_SINCE
-
template <typename Array, if_compatible_array<Array> = true>
Q_DECL_CONSTEXPR QStringView(const Array &str) noexcept
: QStringView(str, lengthHelperArray(str)) {}