mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
12 lines
333 B
Diff
12 lines
333 B
Diff
![]() |
--- src/tools/qstring.h
|
||
|
+++ src/tools/qstring.h
|
||
|
@@ -195,6 +195,8 @@
|
||
|
ushort unicode() const { return ucs; }
|
||
|
#ifdef Q_NO_PACKED_REFERENCE
|
||
|
ushort &unicode() { return *(&ucs); }
|
||
|
+#elif defined Q_NO_PACKED_POINTERS
|
||
|
+ ushort &unicode() { ushort& tmp = ucs; return tmp; }
|
||
|
#else
|
||
|
ushort &unicode() { return ucs; }
|
||
|
#endif
|