diff options
author | Orgad Shaneh <[email protected]> | 2017-04-14 16:08:34 +0300 |
---|---|---|
committer | Orgad Shaneh <[email protected]> | 2017-04-26 08:27:31 +0000 |
commit | e1660a18cf2097511c08a62e7af3e19683e3420a (patch) | |
tree | 58b24e04ffad25296f288f0eae73cc81aceccbb3 /src/libs/cplusplus | |
parent | 531fba61f0349c6b0eedc3b2e832f76a76c8be94 (diff) |
Remove workarounds for unsupported compilers
Change-Id: Ie28ff761b0bae13c6ebdf7dd649cfbba28e0fc2c
Reviewed-by: Nikolai Kosjar <[email protected]>
Diffstat (limited to 'src/libs/cplusplus')
-rw-r--r-- | src/libs/cplusplus/LookupItem.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libs/cplusplus/LookupItem.h b/src/libs/cplusplus/LookupItem.h index 1007635f6ab..e2683c28778 100644 --- a/src/libs/cplusplus/LookupItem.h +++ b/src/libs/cplusplus/LookupItem.h @@ -73,9 +73,3 @@ private: uint qHash(const CPlusPlus::LookupItem &result); } // namespace CPlusPlus - -#if defined(Q_CC_MSVC) && _MSC_VER <= 1300 -//this ensures that code outside QmlJS can use the hash function -//it also a workaround for some compilers -inline uint qHash(const CPlusPlus::LookupItem &item) { return CPlusPlus::qHash(item); } -#endif |