diff --git a/src/corelib/text/qanystringview.h b/src/corelib/text/qanystringview.h index a2f638d4a3b..ec6d960dac8 100644 --- a/src/corelib/text/qanystringview.h +++ b/src/corelib/text/qanystringview.h @@ -209,13 +209,13 @@ class QAnyStringView constexpr QAnyStringView(Container &&c, QtPrivate::wrapped_t &&capacity = {}) //noexcept(std::is_nothrow_constructible_v) : QAnyStringView(capacity = std::forward(c)) {} + template = true> constexpr QAnyStringView(const Char &c) noexcept : QAnyStringView{fromCharInternal(c)} {} template = true> constexpr QAnyStringView(Char ch, QCharContainer &&capacity = QCharContainer()) noexcept : QAnyStringView{&(capacity.ch = ch), 1} {} - template , bool> = true> constexpr QAnyStringView(Char c, Container &&capacity = {}) noexcept