summaryrefslogtreecommitdiffstats
path: root/cmake/modulecppexports.h.in
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@qt.io>2023-07-14 11:18:46 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2023-07-15 13:05:47 +0000
commit8d4945fb65d4b2454626fa00068a217e23c5aa99 (patch)
tree362ba8edff4822a46e8fe211b36423d7c90330bf /cmake/modulecppexports.h.in
parent8bf8c9113c2c879f3a59fd3fdbb3bb2788d3aca1 (diff)
modulecppexports.h.in: replace non-ASCII with ASCII characters
Qt 6 requires /utf-8 for user-projects by default, but allows users to opt-out (cf. 0cdcbb40a1f7fe0288698898027717959f4fbee1), so we shouldn't use non-ASCII characters in public headers. Amends 97f643faee876cadb36f110ef5a96abf1b68acff. Fixes: QTBUG-115229 Change-Id: Ieb93ea9f3526e7bcc2e5aeffb5e69c68d10db792 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> (cherry picked from commit 7a1625abf1648c4161c334a8f497a676fdaf17dd) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'cmake/modulecppexports.h.in')
-rw-r--r--cmake/modulecppexports.h.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/cmake/modulecppexports.h.in b/cmake/modulecppexports.h.in
index 324e86faa7..4d41a3a2a2 100644
--- a/cmake/modulecppexports.h.in
+++ b/cmake/modulecppexports.h.in
@@ -19,22 +19,22 @@
#endif
#if !defined(QT_BUILD_@module_define_infix@_LIB) && !defined(QT_STATIC)
-/* outside library → inline decl + defi */
+/* outside library -> inline decl + defi */
/* static builds treat everything as part of the library, so they never inline */
# define QT_@module_define_infix@_INLINE_SINCE(major, minor) inline
# define QT_@module_define_infix@_INLINE_IMPL_SINCE(major, minor) 1
#elif defined(QT_@module_define_infix@_BUILD_REMOVED_API)
/* inside library, inside removed_api.cpp:
- * keep deprecated API → non-inline decl;
- * remove deprecated API → inline decl;
+ * keep deprecated API -> non-inline decl;
+ * remove deprecated API -> inline decl;
* definition is always available */
# define QT_@module_define_infix@_INLINE_SINCE(major, minor) \
QT_IF_DEPRECATED_SINCE(major, minor, inline, /* not inline */)
# define QT_@module_define_infix@_INLINE_IMPL_SINCE(major, minor) 1
#else
/* inside library, outside removed_api.cpp:
- * keep deprecated API → non-inline decl, no defi;
- * remove deprecated API → inline decl, defi */
+ * keep deprecated API -> non-inline decl, no defi;
+ * remove deprecated API -> inline decl, defi */
# define QT_@module_define_infix@_INLINE_SINCE(major, minor) \
QT_IF_DEPRECATED_SINCE(major, minor, inline, /* not inline */)
# define QT_@module_define_infix@_INLINE_IMPL_SINCE(major, minor) \