openfoam/applications/solvers/multiphase/reactingEulerFoam/phaseSystems
Mark Olesen 07dafe7b0b STYLE: use range-for when looping dictionary entries.
- as part of the cleanup of dictionary access methods (c6520033c9)
  made the dictionary class single inheritance from IDLList<entry>.

  This eliminates any ambiguities for iterators and allows
  for simple use of range-for looping.

  Eg,
      for (const entry& e : topDict))
      {
          Info<< "entry:" << e.keyword() << " is dict:" << e.isDict() << nl;
      }

   vs

      forAllConstIter(dictionary, topDict, iter))
      {
          Info<< "entry:" << iter().keyword()
              << " is dict:" << iter().isDict() << nl;
      }
2018-10-19 13:08:24 +02:00
..
BlendedInterfacialModel ENH: use dictionary::get<word>() instead of lookup() in a few places 2018-10-19 09:11:31 +02:00
diameterModels ENH: use dictionary::get<word>() instead of lookup() in a few places 2018-10-19 09:11:31 +02:00
Make fvOptions: Reorganized and updated to simplify use in sub-models and maintenance 2015-12-02 11:49:52 +00:00
phaseModel ENH: use dictionary::get<word>() instead of lookup() in a few places 2018-10-19 09:11:31 +02:00
phasePair COMP: avoid compiler warnings about phasePairKey friend functions 2018-07-24 10:51:12 +02:00
phaseSystem STYLE: use range-for when looping dictionary entries. 2018-10-19 13:08:24 +02:00
PhaseSystems STYLE: use range-for when looping dictionary entries. 2018-10-19 13:08:24 +02:00
reactionThermo STYLE: thermo: Macro renaming 2017-12-14 16:37:21 +00:00