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 4eba393fe1
commit 56fa7c0906
1426 changed files with 8375 additions and 8375 deletions

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -282,7 +282,7 @@ void Foam::surfaceIntersection::classifyHit
DynamicList<edge>& allCutEdges,
DynamicList<point>& allCutPoints,
List<DynamicList<label> >& surfEdgeCuts
List<DynamicList<label>>& surfEdgeCuts
)
{
const edge& e = surf1.edges()[edgeI];
@ -563,7 +563,7 @@ void Foam::surfaceIntersection::doCutEdges
DynamicList<edge>& allCutEdges,
DynamicList<point>& allCutPoints,
List<DynamicList<label> >& surfEdgeCuts
List<DynamicList<label>>& surfEdgeCuts
)
{
scalar oldTol = intersection::setPlanarTol(1e-3);
@ -738,7 +738,7 @@ Foam::surfaceIntersection::surfaceIntersection
// From edge to cut index on surface1
List<DynamicList<label> > edgeCuts1(query1.surface().nEdges());
List<DynamicList<label>> edgeCuts1(query1.surface().nEdges());
doCutEdges
(
@ -765,7 +765,7 @@ Foam::surfaceIntersection::surfaceIntersection
}
// From edge to cut index
List<DynamicList<label> > edgeCuts2(query2.surface().nEdges());
List<DynamicList<label>> edgeCuts2(query2.surface().nEdges());
doCutEdges
(
@ -842,7 +842,7 @@ Foam::surfaceIntersection::surfaceIntersection
{
// From edge to cut index on surface1
List<DynamicList<label> > edgeCuts1(surf1.nEdges());
List<DynamicList<label>> edgeCuts1(surf1.nEdges());
forAll(intersections1, edgeI)
{
@ -883,7 +883,7 @@ Foam::surfaceIntersection::surfaceIntersection
{
// From edge to cut index on surface2
List<DynamicList<label> > edgeCuts2(surf2.nEdges());
List<DynamicList<label>> edgeCuts2(surf2.nEdges());
forAll(intersections2, edgeI)
{
@ -1000,7 +1000,7 @@ Foam::surfaceIntersection::surfaceIntersection
DynamicList<point> allCutPoints;
// From edge to cut index on surface1
List<DynamicList<label> > edgeCuts1(query1.surface().nEdges());
List<DynamicList<label>> edgeCuts1(query1.surface().nEdges());
doCutEdges
(