mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: use list methods find/found instead of findIndex function
This commit is contained in:
@ -225,8 +225,8 @@ bool splitHex
|
||||
|
||||
const face& f = faces[facei];
|
||||
|
||||
label fp0 = findIndex(f, e[0]);
|
||||
label fp1 = findIndex(f, e[1]);
|
||||
label fp0 = f.find(e[0]);
|
||||
label fp1 = f.find(e[1]);
|
||||
|
||||
if (fp0 == -1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user