From b91e87a8db06713cb5891949c1bf77ed43bfc9c3 Mon Sep 17 00:00:00 2001 From: Ahmad Samir Date: Wed, 21 Dec 2022 00:55:55 +0200 Subject: [PATCH] QUrl: remove unused qt_from_latin1() forward declaration It's not currently used in qurl.cpp. Change-Id: Ic654e28fc64d90897be3a38d477e38de0414a02a Reviewed-by: Thiago Macieira --- src/corelib/io/qurl.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/corelib/io/qurl.cpp b/src/corelib/io/qurl.cpp index a3ff86b3538..d9137f439d3 100644 --- a/src/corelib/io/qurl.cpp +++ b/src/corelib/io/qurl.cpp @@ -405,9 +405,6 @@ QT_BEGIN_NAMESPACE using namespace Qt::StringLiterals; -// in qstring.cpp: -void qt_from_latin1(char16_t *dst, const char *str, size_t size) noexcept; - inline static bool isHex(char c) { c |= 0x20;