src/OpenFOAM: Rationalised use of enumerations by using the C++11 scoped form
for Time, treeBoundBox, indexedOctree, dynamicIndexedOctree, CirculatorBase
This commit is contained in:
@ -268,8 +268,8 @@ int main(int argc, char *argv[])
|
||||
if
|
||||
(
|
||||
outside
|
||||
? (t == volumeType::OUTSIDE)
|
||||
: (t == volumeType::INSIDE)
|
||||
? (t == volumeType::outside)
|
||||
: (t == volumeType::inside)
|
||||
)
|
||||
{
|
||||
facesToSubset[facei] = true;
|
||||
|
||||
Reference in New Issue
Block a user