1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

0023274: MSVC++ warnings issued during compilation for 64bits

Replacing Standard_Integer with Standard_Size to avoid warnings.
This commit is contained in:
Pawel
2012-07-12 17:24:03 +02:00
committed by Pawel Kowalski
parent 8ad8260234
commit fb8a73581a
11 changed files with 67 additions and 50 deletions

View File

@@ -58,7 +58,8 @@ Units_Sentence::Units_Sentence(const Handle(Units_Lexicon)& alexicon,
const Standard_CString astring)
{
Standard_Integer index;
Standard_Integer i,k,l,limchain;
Standard_Integer k,l;
Standard_Size i,limchain;
char chain[255];
Handle(Units_Token) token;
Handle(Units_Token) referencetoken;