mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0024862: CLang warnings -Wint-to-pointer-cast
Warning is fixed.
This commit is contained in:
parent
d92035598f
commit
68bd84a5f0
@ -22,7 +22,6 @@ TestTopOpeTools_Trace::TestTopOpeTools_Trace
|
|||||||
mygenre(genre),
|
mygenre(genre),
|
||||||
myfirstentry(1),mynbmaxentry(nbmaxentry),mynbentries(0),
|
myfirstentry(1),mynbmaxentry(nbmaxentry),mynbentries(0),
|
||||||
myflag(myfirstentry,mynbmaxentry),
|
myflag(myfirstentry,mynbmaxentry),
|
||||||
myfunc(myfirstentry,mynbmaxentry),
|
|
||||||
myftyp(myfirstentry,mynbmaxentry),
|
myftyp(myfirstentry,mynbmaxentry),
|
||||||
myverbose(Standard_False),
|
myverbose(Standard_False),
|
||||||
myfverbose(myfirstentry,mynbmaxentry)
|
myfverbose(myfirstentry,mynbmaxentry)
|
||||||
@ -33,7 +32,6 @@ TestTopOpeTools_Trace::TestTopOpeTools_Trace
|
|||||||
mygenre("flag"),
|
mygenre("flag"),
|
||||||
myfirstentry(1),mynbmaxentry(nbmaxentry),mynbentries(0),
|
myfirstentry(1),mynbmaxentry(nbmaxentry),mynbentries(0),
|
||||||
myflag(myfirstentry,mynbmaxentry),
|
myflag(myfirstentry,mynbmaxentry),
|
||||||
myfunc(myfirstentry,mynbmaxentry),
|
|
||||||
myftyp(myfirstentry,mynbmaxentry),
|
myftyp(myfirstentry,mynbmaxentry),
|
||||||
myverbose(Standard_False),
|
myverbose(Standard_False),
|
||||||
myfverbose(myfirstentry,mynbmaxentry)
|
myfverbose(myfirstentry,mynbmaxentry)
|
||||||
@ -153,7 +151,7 @@ Standard_Boolean TestTopOpeTools_Trace::Exist
|
|||||||
(const tf_value func, Standard_Integer& index)
|
(const tf_value func, Standard_Integer& index)
|
||||||
{
|
{
|
||||||
for (Standard_Integer i=myfirstentry; i<=mynbentries; i++)
|
for (Standard_Integer i=myfirstentry; i<=mynbentries; i++)
|
||||||
if (myfunc.Value(i) == ((long)func)) { index = i; return Standard_True; }
|
if (myfunc.Value(i) == func) { index = i; return Standard_True; }
|
||||||
return Standard_False;
|
return Standard_False;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -161,7 +159,7 @@ const t_flag TestTopOpeTools_Trace::Getflag(const Standard_Integer index)
|
|||||||
{ return (t_flag)myflag.Value(index); }
|
{ return (t_flag)myflag.Value(index); }
|
||||||
|
|
||||||
const tf_value TestTopOpeTools_Trace::Getfunc(const Standard_Integer index)
|
const tf_value TestTopOpeTools_Trace::Getfunc(const Standard_Integer index)
|
||||||
{ return (tf_value)myfunc.Value(index); }
|
{ return myfunc.Value(index); }
|
||||||
|
|
||||||
const te_ftyp TestTopOpeTools_Trace::Getftyp(const Standard_Integer index)
|
const te_ftyp TestTopOpeTools_Trace::Getftyp(const Standard_Integer index)
|
||||||
{
|
{
|
||||||
@ -178,7 +176,7 @@ Standard_Integer TestTopOpeTools_Trace::Add
|
|||||||
if ( Exist(flag,index) || ( mynbentries >= mynbmaxentry) ) return 1;
|
if ( Exist(flag,index) || ( mynbentries >= mynbmaxentry) ) return 1;
|
||||||
mynbentries++;
|
mynbentries++;
|
||||||
myflag.SetValue(mynbentries,flag);
|
myflag.SetValue(mynbentries,flag);
|
||||||
myfunc.SetValue(mynbentries,(long)func);
|
myfunc.SetValue(mynbentries,func);
|
||||||
myftyp.SetValue(mynbentries,(Standard_Integer)ftyp);
|
myftyp.SetValue(mynbentries,(Standard_Integer)ftyp);
|
||||||
myfverbose.SetValue(mynbentries,Standard_False);
|
myfverbose.SetValue(mynbentries,Standard_False);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
#ifndef _TestTopOpeTools_Trace_HeaderFile
|
#ifndef _TestTopOpeTools_Trace_HeaderFile
|
||||||
#define _TestTopOpeTools_Trace_HeaderFile
|
#define _TestTopOpeTools_Trace_HeaderFile
|
||||||
|
|
||||||
|
#include <NCollection_Vector.hxx>
|
||||||
#include <TCollection_AsciiString.hxx>
|
#include <TCollection_AsciiString.hxx>
|
||||||
#include <TColStd_Array1OfAsciiString.hxx>
|
#include <TColStd_Array1OfAsciiString.hxx>
|
||||||
#include <TColStd_Array1OfInteger.hxx>
|
#include <TColStd_Array1OfInteger.hxx>
|
||||||
@ -121,13 +122,14 @@ private:
|
|||||||
|
|
||||||
// ==== Fields
|
// ==== Fields
|
||||||
|
|
||||||
TCollection_AsciiString mygenre;
|
TCollection_AsciiString mygenre;
|
||||||
Standard_Integer myfirstentry,mynbmaxentry,mynbentries;
|
Standard_Integer myfirstentry,mynbmaxentry,mynbentries;
|
||||||
TColStd_Array1OfAsciiString myflag;
|
TColStd_Array1OfAsciiString myflag;
|
||||||
TColStd_Array1OfInteger myfunc;
|
NCollection_Vector<tf_value> myfunc;
|
||||||
TColStd_Array1OfInteger myftyp;
|
TColStd_Array1OfInteger myftyp;
|
||||||
Standard_Boolean myverbose;
|
Standard_Boolean myverbose;
|
||||||
TColStd_Array1OfBoolean myfverbose;
|
TColStd_Array1OfBoolean myfverbose;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user