1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0026831: Configuration - define HashCode for pthread_t on Android

explicit cast Standard_ThreadId to Standard_Size
This commit is contained in:
ibs 2015-11-02 17:41:04 +03:00 committed by bugmaster
parent 2e26cf7664
commit 0123185ed1

View File

@ -87,7 +87,7 @@ class BOPCol_ContextFunctor
static Standard_Integer HashCode(const Standard_ThreadId theKey,
const Standard_Integer Upper)
{
return ::HashCode(theKey, Upper);
return ::HashCode((Standard_Size)theKey, Upper);
}
static Standard_Boolean IsEqual(const Standard_ThreadId theKey1,