mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0033553: Foundation Classes - HashUtils compilation problem
Updated OptimalSeed template
This commit is contained in:
parent
60792f26f0
commit
06282d9c7c
@ -46,15 +46,9 @@ namespace opencascade
|
||||
}
|
||||
|
||||
template <typename T = size_t>
|
||||
constexpr typename std::enable_if<sizeof(T) == 8, uint64_t>::type optimalSeed()
|
||||
constexpr T optimalSeed()
|
||||
{
|
||||
return 0xA329F1D3A586ULL;
|
||||
}
|
||||
|
||||
template <typename T = size_t>
|
||||
constexpr typename std::enable_if<sizeof(T) != 8, T >::type optimalSeed()
|
||||
{
|
||||
return static_cast<T>(0xc70f6907U);
|
||||
return sizeof(T) == 8 ? static_cast<T>(0xA329F1D3A586ULL) : static_cast<T>(0xc70f6907U);
|
||||
}
|
||||
};
|
||||
|
||||
@ -84,15 +78,9 @@ namespace opencascade
|
||||
}
|
||||
|
||||
template <typename T = size_t>
|
||||
constexpr typename std::enable_if<sizeof(T) == 8, uint64_t>::type optimalSeed()
|
||||
constexpr T optimalSeed()
|
||||
{
|
||||
return 14695981039346656037ULL;
|
||||
}
|
||||
|
||||
template <typename T = size_t>
|
||||
constexpr typename std::enable_if<sizeof(T) != 8, T>::type optimalSeed()
|
||||
{
|
||||
return static_cast<T>(2166136261U);
|
||||
return sizeof(T) == 8 ? static_cast<T>(14695981039346656037ULL) : static_cast<T>(2166136261U);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -14,6 +14,7 @@
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
#include <Standard_HashUtils.hxx>
|
||||
#include <TopLoc_SListOfItemLocation.hxx>
|
||||
#include <TopLoc_Datum3D.hxx>
|
||||
#include <TopLoc_ItemLocation.hxx>
|
||||
|
Loading…
x
Reference in New Issue
Block a user