mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0023356: Suspicious assignment inside the condition expression of 'if' operator.
Changed the assignments in the if-clauses to comparisons.
This commit is contained in:
parent
d4a137d527
commit
6d1a5d3a0c
@ -724,7 +724,7 @@ static Standard_Integer OCC297 (Draw_Interpretor& di,Standard_Integer /*argc*/,
|
||||
static Standard_Integer OCC305 (Draw_Interpretor& di,Standard_Integer argc, const char ** argv )
|
||||
|
||||
{
|
||||
if (argc =! 2)
|
||||
if (argc != 2)
|
||||
{
|
||||
di <<"Usage : " << argv[0] << " file"<<"\n";
|
||||
return 1;
|
||||
@ -1895,7 +1895,7 @@ static Standard_Integer OCC909 (Draw_Interpretor& di, Standard_Integer argc, con
|
||||
//=======================================================================
|
||||
static Standard_Integer OCC921 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
|
||||
{
|
||||
if (argc =! 2)
|
||||
if (argc != 2)
|
||||
{
|
||||
di <<"Usage : " << argv[0] << " face"<<"\n";
|
||||
return 1;
|
||||
@ -1918,7 +1918,7 @@ static Standard_Integer OCC921 (Draw_Interpretor& di, Standard_Integer argc, con
|
||||
//=======================================================================
|
||||
static Standard_Integer OCC902(Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
|
||||
{
|
||||
if (argc =! 2)
|
||||
if (argc != 2)
|
||||
{
|
||||
di <<"Usage : " << argv[0] << " expression"<<"\n";
|
||||
return 1;
|
||||
|
@ -1103,7 +1103,7 @@ static void SortEdges5 (const TopTools_Array1OfShape& theArS, const TColgp_Array
|
||||
else {aDP = aDP3; aCP = theArP.Value(i4);} //i4, i5 - group of 2 edges at the bottom
|
||||
if(!IsDirectionPositive(theAx, aDP, aCP)) {//first must be positive direction
|
||||
Standard_Integer aN;
|
||||
if(aTop = 2) {
|
||||
if(aTop == 2) {
|
||||
// change i1 <=> i2
|
||||
aN = i2; i2 = i1;
|
||||
i1 = aN;
|
||||
@ -1126,7 +1126,7 @@ static void SortEdges5 (const TopTools_Array1OfShape& theArS, const TColgp_Array
|
||||
|
||||
if(!IsDirectionPositive(theAx, aDP, aCP)) {//first must be positive direction
|
||||
Standard_Integer aN;
|
||||
if(aTop = 2) {
|
||||
if(aTop == 2) {
|
||||
// change i3 <=> i5
|
||||
aN = i5; i5 = i3;
|
||||
i3 = aN;
|
||||
|
Loading…
x
Reference in New Issue
Block a user