fix condition in CV_OperationsTest::operations1()
This commit is contained in:
parent
a8cb5c3983
commit
8271bd5f14
@ -965,7 +965,7 @@ bool CV_OperationsTest::operations1()
|
||||
|
||||
Vec<double,10> v10dzero;
|
||||
for (int ii = 0; ii < 10; ++ii) {
|
||||
if (!v10dzero[ii] == 0.0)
|
||||
if (v10dzero[ii] != 0.0)
|
||||
throw test_excep();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user