Modification function HashCode() for correct work of DataMap

This commit is contained in:
skl 2005-10-05 13:27:49 +00:00
parent 544a24fb7f
commit 3f8c64cc43

View File

@ -1,7 +1,7 @@
// File: SMESH_DataMapOfElemPtrSequenceOfElemPtr.hxx // File: SMESH_DataMapOfElemPtrSequenceOfElemPtr.hxx
// Created: 26.09.05 17:41:10 // Created: 26.09.05 17:41:10
// Author: Sergey KUUL // Author: Sergey KUUL
// Copyright: Airbus Industries 2004 // Copyright: Open CASCADE 2005
#ifndef SMESH_DataMapOfElemPtrSequenceOfElemPtr_HeaderFile #ifndef SMESH_DataMapOfElemPtrSequenceOfElemPtr_HeaderFile
@ -14,7 +14,7 @@
inline Standard_Integer HashCode(SMDS_MeshElementPtr theElem, inline Standard_Integer HashCode(SMDS_MeshElementPtr theElem,
const Standard_Integer theUpper) const Standard_Integer theUpper)
{ {
SMDS_MeshElement * anElem = (SMDS_MeshElement *) theElem; void* anElem = (void*) theElem;
return HashCode(anElem,theUpper); return HashCode(anElem,theUpper);
} }