1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0032916: Coding Rules - eliminate MSVS warning C26451 on VS2019/C++20 (Arithmetic overflow: Using operator '+' on a 4 byte value...)

Microsoft Visual Studio Professional 2019
Version 16.11.11
std=c++20

Get rid of `Warning C26451 Arithmetic overflow: Using operator '+' on a 4 byte value
and then casting the result to a 8 byte value.
Cast the value to the wider type before calling operator '+' to avoid overflow (io.2)`
This commit is contained in:
ddzama 2022-03-31 09:19:35 +03:00 committed by smoskvin
parent 878ea8cd2b
commit d31e5dbbb4

View File

@ -1115,7 +1115,7 @@ void TestPerformanceMapAccess(Draw_Interpretor& di)
aTimer.Reset();
aTimer.Start();
{
for (Standard_Integer anIdx = 0; anIdx < 10000; ++anIdx)
for (size_t anIdx = 0; anIdx < 10000; ++anIdx)
{
if (aSet.find (aVec[anIdx + 1000]) == aSet.end())
aResult = Standard_False;
@ -1136,7 +1136,7 @@ void TestPerformanceMapAccess(Draw_Interpretor& di)
aTimer.Reset();
aTimer.Start();
{
for (Standard_Integer anIdx = 0; anIdx < 10000; ++anIdx)
for (size_t anIdx = 0; anIdx < 10000; ++anIdx)
{
if (!aCollec->Contains (aVec[anIdx + 1000]))
aResult = Standard_False;