diff --git a/src/AIS/AIS_NDataMapOfTransientIteratorOfListTransient.hxx b/src/AIS/AIS_NDataMapOfTransientIteratorOfListTransient.hxx index 5c362d79b3..b45f6286aa 100755 --- a/src/AIS/AIS_NDataMapOfTransientIteratorOfListTransient.hxx +++ b/src/AIS/AIS_NDataMapOfTransientIteratorOfListTransient.hxx @@ -24,12 +24,6 @@ #include #include -inline Standard_Boolean IsEqual (const Handle_Standard_Transient& theH1, - const Handle_Standard_Transient& theH2) -{ - return (theH1 == theH2); -} - DEFINE_BASECOLLECTION(AIS_BaseCollItListTransient, AIS_NListIteratorOfListTransient) DEFINE_DATAMAP (AIS_NDataMapOfTransientIteratorOfListTransient, diff --git a/src/OpenGl/OpenGl_FontMgr.cxx b/src/OpenGl/OpenGl_FontMgr.cxx index b461a42c5d..596355a183 100755 --- a/src/OpenGl/OpenGl_FontMgr.cxx +++ b/src/OpenGl/OpenGl_FontMgr.cxx @@ -33,32 +33,6 @@ float h_scale = 0; void dump_texture( int id); -class Font_DataMap: - public NCollection_DataMap< Handle(TCollection_HAsciiString), - Handle(TCollection_HAsciiString)> -{ -public: - inline Font_DataMap - (const Standard_Integer NbBuckets = 1, - const Handle(NCollection_BaseAllocator)& theAllocator = 0L) - : NCollection_DataMap (NbBuckets, theAllocator) - {} - - inline Font_DataMap (const Font_DataMap& theOther) - : NCollection_DataMap (theOther) - {} - friend Standard_Boolean IsEqual( const Handle(TCollection_HAsciiString)& h1, - const Handle(TCollection_HAsciiString)& h2 ); -}; -inline Standard_Boolean -IsEqual( const Handle(TCollection_HAsciiString)& h1, - const Handle(TCollection_HAsciiString)& h2 ) -{ - return (!h1->IsLess(h2) && !h1->IsGreater(h2)); -} - OpenGl_FontMgr::OpenGl_FontMgr() : myCurrentFontId(-1), myXCurrentScale(1.f), diff --git a/src/Standard/Handle_Standard_Transient.hxx b/src/Standard/Handle_Standard_Transient.hxx index eafae6fd3a..3f45d5186b 100755 --- a/src/Standard/Handle_Standard_Transient.hxx +++ b/src/Standard/Handle_Standard_Transient.hxx @@ -236,6 +236,16 @@ private: Standard_Transient *entity; }; +//! Function in global scope to check handles for equality. +//! Will be used with standard OCCT collections like NCollection_DataMap within NCollection_DefaultHasher +//! when there are no specialization defined for concrete type. +//! Notice that this implementation compares only pointers to objects! +inline Standard_Boolean IsEqual (const Handle(Standard_Transient)& theFirst, + const Handle(Standard_Transient)& theSecond) +{ + return theFirst == theSecond; +} + #ifdef _WIN32 #pragma warning (pop) #endif diff --git a/src/TObj/TObj_Common.hxx b/src/TObj/TObj_Common.hxx index 248cd0fe4e..f6c24aca1e 100755 --- a/src/TObj/TObj_Common.hxx +++ b/src/TObj/TObj_Common.hxx @@ -33,17 +33,6 @@ #include #include -//! The function IsEqual explicitly defined for Handle(Standard_Transient) -//! in order to avoid the problem with implicit using of IsEqual() defined -//! for Standard_Address. The problem is that Handle(Standard_Transient) -//! have only operator of type casting to (non-const) Standard_Transient*, -//! hence this implicit way cannot be used for const Handle(Standard_Transient) -inline Standard_Boolean IsEqual(const Handle(Standard_Transient)& One, - const Handle(Standard_Transient)& Two) -{ - return One == Two; -} - //! Methods inline implimentation for HExtendedString inline Standard_Integer HashCode (const Handle(TCollection_HExtendedString)& theStr, diff --git a/src/TopTools/TopTools_MutexForShapeProvider.hxx b/src/TopTools/TopTools_MutexForShapeProvider.hxx index 98753f7286..762b9ed3f3 100644 --- a/src/TopTools/TopTools_MutexForShapeProvider.hxx +++ b/src/TopTools/TopTools_MutexForShapeProvider.hxx @@ -32,9 +32,6 @@ class TopoDS_Shape; //! This class is used to create and store mutexes associated with shapes. class TopTools_MutexForShapeProvider { - friend Standard_Boolean IsEqual(const Handle_TopoDS_TShape & theFirstHandle, - const Handle_TopoDS_TShape & theSecondHandle); - public: //! Constructor Standard_EXPORT TopTools_MutexForShapeProvider(); @@ -66,10 +63,4 @@ private: }; -inline Standard_Boolean IsEqual(const Handle_TopoDS_TShape & theFirstHandle, - const Handle_TopoDS_TShape & theSecondHandle) -{ - return (theFirstHandle == theSecondHandle); -} - #endif \ No newline at end of file