diff options
author | hjk <hjk@theqtcompany.com> | 2016-03-17 13:52:43 +0100 |
---|---|---|
committer | hjk <hjk@theqtcompany.com> | 2016-03-17 16:01:33 +0000 |
commit | 82a523f6b199eaf8a3c7656c7102d93dddff06b9 (patch) | |
tree | c8373b8290a3b6fb635e0eb7c4d49a047eca89b8 /src/plugins/cpptools/cppsourceprocessor.h | |
parent | 05fbef78ad115d86caf39a632b2a9a1569a956a0 (diff) | |
download | qt-creator-82a523f6b199eaf8a3c7656c7102d93dddff06b9.tar.gz |
Relax use of QT_NO_CAST_FROM_ASCII to QT_RESTRICTED_CAST_FROM_ASCII
This is an opt-in trade-off between type safety and user
code convenience.
QT_NO_CAST_FROM_ASCII is highly beneficial to avoid unintended
conversions from 8 bit data with potentially "unsuitable"
encodings to QString. However, it has the undesirable side-effect
to require user code to wrap character and string literals
in QLatin1Char(...) and QLatin1String(...) or use similar
construction, cluttering the code significantly.
QT_RESTRICTED_CAST_FROM_ASCII macro works almost as
QT_NO_CAST_FROM_ASCII, except that it enables the QChar(char)
constructor and adds an additional QString(const char (&ch)[N])
constructor that matches C++ string literals, but no arbitrary
character pointers.
This avoids a significant share of the need to clutter the
user code by only a slight relaxation of the type-safety.
Change-Id: I64e0430bb1352edcedf7e19ee25c16408727084c
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Diffstat (limited to 'src/plugins/cpptools/cppsourceprocessor.h')
0 files changed, 0 insertions, 0 deletions