Files
openfoam/applications/test
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
..
2018-10-18 12:57:32 +02:00
2017-05-17 10:18:14 +02:00
2018-07-30 12:13:42 +02:00
2018-02-26 12:05:00 +01:00
2013-09-27 22:47:59 +01:00