Update code to use the simpler C++11 template syntax removing spaces between closing ">"s

This commit is contained in:
Henry Weller
2016-01-10 22:41:16 +00:00
parent 36f2d69888
commit 94c05a1e6c
1426 changed files with 8375 additions and 8375 deletions

View File

@ -256,7 +256,7 @@
they are macros, they will fail if the iterated object contains
any commas /e.g./ following will FAIL!:
#+BEGIN_SRC C++
forAllIter(HashTable<labelPair, edge, Hash<edge> >, foo, iter)
forAllIter(HashTable<labelPair, edge, Hash<edge>>, foo, iter)
#+END_SRC
These convenience macros are also generally avoided in other
container classes and OpenFOAM primitive classes.