mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-26 09:20:34 +05:00
Modification function HashCode() for correct work of DataMap
This commit is contained in:
parent
544a24fb7f
commit
3f8c64cc43
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user