summaryrefslogtreecommitdiffstats
path: root/src/corelib/compat/removed_api.cpp
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2022-11-14 14:56:14 -0800
committerThiago Macieira <thiago.macieira@intel.com>2022-11-15 21:47:00 +0000
commit30c491f3b259f9472155271f42f2d867040481f6 (patch)
treeb8994e9bfbe26f8886966ed46bdc60407556a41a /src/corelib/compat/removed_api.cpp
parent85a1663eb15cd85f91fe1f6dd924588d9cc7c2a8 (diff)
QString: mark inline to{U,}LongLong() for inlining in Qt 7
The original implementation of the toIntegral_helper() called these two functions, before we added the out-of-line non-template toIntegral_helper() overloads taking QStringView for Qt 5.15 in commit f1cbc3c9d24024b6bdd8d0346de9d7e548133459. They should have been inlined in Qt 6.0, but no one noticed this. Change-Id: Id8e48e8f498c4a029619fffd172795aaba2d815b Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Diffstat (limited to 'src/corelib/compat/removed_api.cpp')
-rw-r--r--src/corelib/compat/removed_api.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/corelib/compat/removed_api.cpp b/src/corelib/compat/removed_api.cpp
index 2204be9a3c..ddaa6ec61a 100644
--- a/src/corelib/compat/removed_api.cpp
+++ b/src/corelib/compat/removed_api.cpp
@@ -365,4 +365,7 @@ void QXmlStreamReader::addData(const char *data)
#endif // QT_CONFIG(xmlstreamreader)
+// inlined API
+#include "qstring.h"
+
#endif // QT_CORE_REMOVED_SINCE(6, 5)