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

0026360: Useless global functions IsSimilar() in Standard

Remove IsSimilar() global function for Standard types. Replace usege of IsSimilar() by IsEqual().
This commit is contained in:
akz 2015-09-25 16:33:23 +03:00 committed by bugmaster
parent c50591ee21
commit 42a9dcfc64
10 changed files with 5 additions and 55 deletions

View File

@ -115,7 +115,7 @@ Standard_Boolean Quantity_Convert::IsPhysicalQuantity
Standard_Boolean Find = Standard_False;
while (i <= 68 && !Find)
{
if (IsSimilar(anEnum.ToCString(),theEnums[i-1]))
if (IsEqual(anEnum.ToCString(),theEnums[i-1]))
Find = Standard_True;
else
i++;

View File

@ -31,14 +31,6 @@ inline Standard_Integer HashCode (const Standard_Address Value,
return HashCode( ( ( U.I[0] ^ U.I[1] ) & 0x7fffffff ) , Upper ) ;
}
//============================================================================
//==== IsSimilar : Returns Standard_True if two booleans have the same value
//============================================================================
inline Standard_Boolean IsSimilar(const Standard_Address One
,const Standard_Address Two)
{ return One == Two; }
//============================================================================
// IsEqual : Returns Standard_True if two CString have the same value
//============================================================================

View File

@ -32,8 +32,6 @@
# include <Standard_Integer.hxx>
# endif
inline Standard_Boolean IsSimilar(const Standard_CString One
,const Standard_CString Two);
__Standard_API Standard_Integer HashCode (const Standard_CString,
const Standard_Integer);
inline Standard_Integer HashCode (const Standard_CString,
@ -54,9 +52,9 @@ __Standard_API int Fprintf (FILE* theFile, const char* theFormat, ...);
__Standard_API int Sprintf (char* theBuffer, const char* theFormat, ...);
//============================================================================
//==== IsSimilar : Returns Standard_True if two booleans have the same value
//==== IsEqual : Returns Standard_True if two booleans have the same value
//============================================================================
inline Standard_Boolean IsSimilar(const Standard_CString One
inline Standard_Boolean IsEqual(const Standard_CString One
,const Standard_CString Two)
{
return (strcmp(One,Two) == 0);

View File

@ -36,13 +36,6 @@ inline Standard_Boolean IsEqual(const Standard_Character One,
const Standard_Character Two)
{ return One == Two; }
// ------------------------------------------------------------------
// IsSimilar : Returns Standard_True if two characters have the same value
// ------------------------------------------------------------------
inline Standard_Boolean IsSimilar(const Standard_Character One,
const Standard_Character Two)
{ return One == Two; }
// ===============================================
// Character classification functions
//

View File

@ -66,11 +66,4 @@ inline Standard_Boolean IsEqual(const Standard_ExtCharacter One,
const Standard_ExtCharacter Two)
{ return One == Two; }
// ------------------------------------------------------------------
// IsSimilar : Returns Standard_True if two characters have the same value
// ------------------------------------------------------------------
inline Standard_Boolean IsSimilar(const Standard_ExtCharacter One,
const Standard_ExtCharacter Two)
{ return One == Two; }
#endif

View File

@ -69,14 +69,6 @@ inline Standard_Boolean IsEqual (const Standard_Utf32Char theOne,
}
#endif
// ------------------------------------------------------------------
// IsSimilar : Returns Standard_True if two integers are equal
// ------------------------------------------------------------------
inline Standard_Boolean IsSimilar (const Standard_Integer One,
const Standard_Integer Two)
{ return One == Two; }
// ------------------------------------------------------------------
// IsEven : Returns Standard_True if an integer is even
// ------------------------------------------------------------------

View File

@ -25,7 +25,6 @@
// Methods from Standard_Entity class which are redefined:
// - Hascode
// - IsEqual
// - IsSimilar
// ===============================================
// ==================================
@ -64,15 +63,6 @@ inline Standard_Boolean IsEqual (const Standard_Real Value1,
const Standard_Real Value2)
{ return Abs((Value1 - Value2)) < RealSmall(); }
//-------------------------------------------------------------------
// IsSimilar : Returns Standard_True if two reals are equal
//-------------------------------------------------------------------
inline Standard_Boolean IsSimilar(const Standard_Real One,
const Standard_Real Two)
{ return IsEqual (One,Two); }
// *********************************** //
// Class methods //
// //

View File

@ -133,7 +133,6 @@ inline Standard_ShortReal Min (const Standard_ShortReal Val1,
// Methods from Standard_Entity class which are redefined:
// - Hascode
// - IsEqual
// - IsSimilar
// ===============================================
// ==================================
@ -148,13 +147,6 @@ inline Standard_Boolean IsEqual (const Standard_ShortReal Value1,
const Standard_ShortReal Value2)
{ return Abs((Value1 - Value2)) < ShortRealSmall(); }
//-------------------------------------------------------------------
// IsSimilar : Returns Standard_True if two ShortReals are equal
//-------------------------------------------------------------------
inline Standard_Boolean IsSimilar(const Standard_ShortReal One,
const Standard_ShortReal Two)
{ return IsEqual (One,Two); }
#endif

View File

@ -41,7 +41,7 @@ Standard_Boolean Standard_Transient::IsInstance(const Handle(Standard_Type) &ATy
//
Standard_Boolean Standard_Transient::IsInstance(const Standard_CString theTypeName) const
{
return IsSimilar ( DynamicType()->Name(), theTypeName );
return IsEqual ( DynamicType()->Name(), theTypeName );
}
//

View File

@ -30,7 +30,7 @@ Standard_Boolean Standard_Type::SubType (const Handle(Standard_Type)& theOther)
Standard_Boolean Standard_Type::SubType (const Standard_CString theName) const
{
return theName != 0 && (IsSimilar (myName, theName) || (! myParent.IsNull() && myParent->SubType (theName)));
return theName != 0 && (IsEqual (myName, theName) || (! myParent.IsNull() && myParent->SubType (theName)));
}
// ------------------------------------------------------------------