summaryrefslogtreecommitdiffstats
path: root/src/corelib/text
diff options
context:
space:
mode:
authorGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2020-10-11 20:57:26 +0200
committerGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2020-10-14 20:58:51 +0200
commita095a999a3904a53e78857759a79a0e8c7d8a474 (patch)
treecffb4b7a44eff0355d2852c9d9db41aa3a36e988 /src/corelib/text
parenta8dc2a5b6dda85d63dd8f9f7570069df008941c6 (diff)
Long live Q_IMPLICIT!
C++20 will give us explicit(bool). While we can't use it just yet in its full potential, we can introduce a macro to start marking our implicit conversions (aka `explicit(false)`), removing the need for /* implicit */-like comments. Port a few usages to it. Change-Id: I336d5e4c8d51d8329627900d1059e59062c5cafd Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/corelib/text')
-rw-r--r--src/corelib/text/qchar.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/corelib/text/qchar.h b/src/corelib/text/qchar.h
index 5d807d97a3..96a99aa1d3 100644
--- a/src/corelib/text/qchar.h
+++ b/src/corelib/text/qchar.h
@@ -94,28 +94,28 @@ public:
LastValidCodePoint = 0x10ffff
};
- constexpr QChar() noexcept : ucs(0) {}
- constexpr QChar(ushort rc) noexcept : ucs(rc) {}
- constexpr QChar(uchar c, uchar r) noexcept : ucs(char16_t((r << 8) | c)) {}
- constexpr QChar(short rc) noexcept : ucs(char16_t(rc)) {}
- constexpr QChar(uint rc) noexcept : ucs(char16_t(rc & 0xffff)) {}
- constexpr QChar(int rc) noexcept : ucs(char16_t(rc & 0xffff)) {}
- constexpr QChar(SpecialCharacter s) noexcept : ucs(char16_t(s)) {} // implicit
- constexpr QChar(QLatin1Char ch) noexcept : ucs(ch.unicode()) {} // implicit
- constexpr QChar(char16_t ch) noexcept : ucs(ch) {} // implicit
+ constexpr Q_IMPLICIT QChar() noexcept : ucs(0) {}
+ constexpr Q_IMPLICIT QChar(ushort rc) noexcept : ucs(rc) {}
+ constexpr Q_IMPLICIT QChar(uchar c, uchar r) noexcept : ucs(char16_t((r << 8) | c)) {}
+ constexpr Q_IMPLICIT QChar(short rc) noexcept : ucs(char16_t(rc)) {}
+ constexpr Q_IMPLICIT QChar(uint rc) noexcept : ucs(char16_t(rc & 0xffff)) {}
+ constexpr Q_IMPLICIT QChar(int rc) noexcept : ucs(char16_t(rc & 0xffff)) {}
+ constexpr Q_IMPLICIT QChar(SpecialCharacter s) noexcept : ucs(char16_t(s)) {} // implicit
+ constexpr Q_IMPLICIT QChar(QLatin1Char ch) noexcept : ucs(ch.unicode()) {} // implicit
+ constexpr Q_IMPLICIT QChar(char16_t ch) noexcept : ucs(ch) {} // implicit
#if defined(Q_OS_WIN)
static_assert(sizeof(wchar_t) == sizeof(char16_t));
#endif
#if defined(Q_OS_WIN) || defined(Q_CLANG_QDOC)
# if !defined(_WCHAR_T_DEFINED) || defined(_NATIVE_WCHAR_T_DEFINED)
- constexpr QChar(wchar_t ch) noexcept : ucs(char16_t(ch)) {} // implicit
+ constexpr Q_IMPLICIT QChar(wchar_t ch) noexcept : ucs(char16_t(ch)) {} // implicit
# endif
#endif
#ifndef QT_NO_CAST_FROM_ASCII
- QT_ASCII_CAST_WARN constexpr QChar(char c) noexcept : ucs(uchar(c)) { }
+ QT_ASCII_CAST_WARN constexpr Q_IMPLICIT QChar(char c) noexcept : ucs(uchar(c)) { }
#ifndef QT_RESTRICTED_CAST_FROM_ASCII
- QT_ASCII_CAST_WARN constexpr QChar(uchar c) noexcept : ucs(c) { }
+ QT_ASCII_CAST_WARN constexpr Q_IMPLICIT QChar(uchar c) noexcept : ucs(c) { }
#endif
#endif