diff options
author | Rafael Roquetto <rafael.roquetto.qnx@kdab.com> | 2012-07-24 15:45:44 +0200 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-07-25 18:46:24 +0200 |
commit | e0bcf88ffd02a504bf3398dae1a667ec101afee6 (patch) | |
tree | 23c44bd79b207988410802a74817cb582607b0c8 /qmake/cachekeys.h | |
parent | 89c8b1908ccaf13e6722bb7f2344f46fe6ba7e15 (diff) | |
download | qt4-tools-e0bcf88ffd02a504bf3398dae1a667ec101afee6.tar.gz |
Fix qmake hash function to use XOR
Use XOR instead of OR in order to avoid saturating all bits when computing the
hash value.
cherry-picked from qt5/qtbase: 3a27d4b480214072d972ac67561f2ee4010f8baa
Change-Id: I582e5b3c42d6436395555a54c6826509d6243ed4
Reviewed-by: Andreas Holzammer <andreas.holzammer@kdab.com>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'qmake/cachekeys.h')
-rw-r--r-- | qmake/cachekeys.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qmake/cachekeys.h b/qmake/cachekeys.h index 64d068a6e6..11f5fbf8d2 100644 --- a/qmake/cachekeys.h +++ b/qmake/cachekeys.h @@ -73,7 +73,7 @@ struct FixStringCacheKey } inline uint hashCode() const { if(!hash) - hash = qHash(string) | qHash(flags) /*| qHash(pwd)*/; + hash = qHash(string) ^ qHash(flags) /*^ qHash(pwd)*/; return hash; } }; @@ -98,7 +98,7 @@ struct FileInfoCacheKey } inline uint hashCode() const { if(!hash) - hash = qHash(file) /*| qHash(pwd)*/; + hash = qHash(file) /*^ qHash(pwd)*/; return hash; } inline bool isRelativePath(const QString &file) { |