src/OpenFOAM: Rationalised use of enumerations by using the C++11 scoped form

for Time, treeBoundBox, indexedOctree, dynamicIndexedOctree, CirculatorBase
This commit is contained in:
Henry Weller
2018-08-31 16:11:16 +01:00
parent de456c4f94
commit e750f2555c
51 changed files with 467 additions and 437 deletions

View File

@ -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;