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

0023556: Identical sub-expressions to the left and to the right of the '||' operator

The second condition changed to: (allMovePenToY->Lower() != 1 || allMovePenToY->Length() != Len)
This commit is contained in:
Pawel 2012-11-23 15:57:25 +04:00
parent b9e76f0570
commit bd7ad48c54

View File

@ -47,7 +47,7 @@ IGESGraph_TextFontDef::IGESGraph_TextFontDef () { }
(allPenMotions->Lower() != 1 || allPenMotions->Length() != Len) ||
(allPenFlags->Lower() != 1 || allPenFlags->Length() != Len) ||
(allMovePenToX->Lower() != 1 || allMovePenToX->Length() != Len) ||
(allMovePenToX->Lower() != 1 || allMovePenToX->Length() != Len) )
(allMovePenToY->Lower() != 1 || allMovePenToY->Length() != Len) )
Standard_DimensionMismatch::Raise("IGESGraph_TextFontDef : Init");
theFontCode = aFontCode;