From: skl Date: Wed, 5 Oct 2005 13:27:49 +0000 (+0000) Subject: Modification function HashCode() for correct work of DataMap X-Git-Tag: ForTest_3_1_0a2~24 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=commitdiff_plain;h=3f8c64cc43fe7db2df20bdb83159761b6e5ddb51 Modification function HashCode() for correct work of DataMap --- diff --git a/src/SMESH/SMESH_DataMapOfElemPtrSequenceOfElemPtr.hxx b/src/SMESH/SMESH_DataMapOfElemPtrSequenceOfElemPtr.hxx index 87382ddad..b5ede17ea 100644 --- a/src/SMESH/SMESH_DataMapOfElemPtrSequenceOfElemPtr.hxx +++ b/src/SMESH/SMESH_DataMapOfElemPtrSequenceOfElemPtr.hxx @@ -1,7 +1,7 @@ // File: SMESH_DataMapOfElemPtrSequenceOfElemPtr.hxx // Created: 26.09.05 17:41:10 // Author: Sergey KUUL -// Copyright: Airbus Industries 2004 +// Copyright: Open CASCADE 2005 #ifndef SMESH_DataMapOfElemPtrSequenceOfElemPtr_HeaderFile @@ -14,7 +14,7 @@ inline Standard_Integer HashCode(SMDS_MeshElementPtr theElem, const Standard_Integer theUpper) { - SMDS_MeshElement * anElem = (SMDS_MeshElement *) theElem; + void* anElem = (void*) theElem; return HashCode(anElem,theUpper); }