Replace !(a==b) test with a more common a!=b test
This commit is contained in:
parent
ae9e003a90
commit
672ff95ae8
@ -64,7 +64,7 @@ namespace OPM
|
|||||||
}
|
}
|
||||||
//cout << endl;
|
//cout << endl;
|
||||||
}
|
}
|
||||||
if(!(int(pos_struct.value.size())==pos_struct.pos[n])){
|
if(int(pos_struct.value.size()) != pos_struct.pos[n]){
|
||||||
cerr << "Failed to read pos structure" << endl;
|
cerr << "Failed to read pos structure" << endl;
|
||||||
cerr << "pos_struct.value.size()" << pos_struct.value.size() << endl;
|
cerr << "pos_struct.value.size()" << pos_struct.value.size() << endl;
|
||||||
cerr << "pos_struct.pos[n+1]" << pos_struct.pos[n] << endl;
|
cerr << "pos_struct.pos[n+1]" << pos_struct.pos[n] << endl;
|
||||||
|
Loading…
Reference in New Issue
Block a user