diff options
author | Liang Qi <liang.qi@nokia.com> | 2011-05-23 07:27:23 (GMT) |
---|---|---|
committer | Liang Qi <liang.qi@nokia.com> | 2011-05-23 07:58:25 (GMT) |
commit | 32a583b575da1b387955734ccf36b0a93de37670 (patch) | |
tree | 87336ca68f6de667d9a256b010af38464b361399 | |
parent | c19ff75707621b0c5bcb832da84921a0370d72a8 (diff) | |
download | Qt-32a583b575da1b387955734ccf36b0a93de37670.zip Qt-32a583b575da1b387955734ccf36b0a93de37670.tar.gz Qt-32a583b575da1b387955734ccf36b0a93de37670.tar.bz2 |
Fix the build for QUuid
Add a quint8 specialization for qbswap.
Reviewed-by: Bradley T. Hughes
-rw-r--r-- | src/corelib/global/qendian.h | 5 | ||||
-rw-r--r-- | src/corelib/plugin/quuid.cpp | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/corelib/global/qendian.h b/src/corelib/global/qendian.h index 566307b..1e95b43 100644 --- a/src/corelib/global/qendian.h +++ b/src/corelib/global/qendian.h @@ -363,6 +363,11 @@ template <typename T> inline void qToLittleEndian(T src, uchar *dest) #endif // Q_BYTE_ORDER == Q_BIG_ENDIAN +template <> inline quint8 qbswap<quint8>(quint8 source) +{ + return source; +} + QT_END_NAMESPACE QT_END_HEADER diff --git a/src/corelib/plugin/quuid.cpp b/src/corelib/plugin/quuid.cpp index e07a1aa..0a1c4b5 100644 --- a/src/corelib/plugin/quuid.cpp +++ b/src/corelib/plugin/quuid.cpp @@ -52,8 +52,7 @@ void _q_toHex(Char *&dst, Integral value) { static const char digits[] = "0123456789abcdef"; - if (sizeof(Integral) > 1) - value = qToBigEndian(value); + value = qToBigEndian(value); const char* p = reinterpret_cast<const char*>(&value); |