openfoam/applications/test/coordinateSystem
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
..
Make BUG: accessing invalid coordinateRotation after move assignment (fixes #884) 2018-06-19 21:24:38 +02:00
testCase0 ENH: improve, simplify, rationalize coordinate system handling (issue #863) 2018-10-01 13:54:10 +02:00
testCase1 ENH: improve, simplify, rationalize coordinate system handling (issue #863) 2018-10-01 13:54:10 +02:00
Test-coordinateSystem.C STYLE: use range-for when looping dictionary entries. 2018-10-19 13:08:24 +02:00
testCsys1 ENH: improve, simplify, rationalize coordinate system handling (issue #863) 2018-10-01 13:54:10 +02:00
testCsys2 ENH: improve, simplify, rationalize coordinate system handling (issue #863) 2018-10-01 13:54:10 +02:00