From 5d41fc6ff3760cda406fb44a534fe919a4fd739e Mon Sep 17 00:00:00 2001
From: andy <andy>
Date: Wed, 1 Feb 2012 11:46:07 +0000
Subject: [PATCH] STYLE: Minor coding comment corrections

---
 .../AMIInterpolation/AMIInterpolation.C             | 13 +++++++++----
 .../AMIInterpolation/AMIInterpolation.H             | 12 ++++++------
 2 files changed, 15 insertions(+), 10 deletions(-)

diff --git a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C
index 3162fc3da6f..cc03fdb7224 100644
--- a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C
+++ b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C
@@ -961,9 +961,14 @@ void Foam::AMIInterpolation<SourcePatch, TargetPatch>::calcAddressing
     {
         WarningIn
         (
-            "AMIInterpolation::calcAddressing"
-            "(const primitivePatch&, const primitivePatch&, "
-            " label, label)"
+            "void Foam::AMIInterpolation<SourcePatch, TargetPatch>::"
+            "calcAddressing"
+            "("
+                "const primitivePatch&, "
+                "const primitivePatch&, "
+                "label, "
+                "label"
+            ")"
         ) << "Have " << srcPatch.size() << " source faces but no target faces."
           << endl;
 
@@ -1614,7 +1619,7 @@ Foam::AMIInterpolation<SourcePatch, TargetPatch>::AMIInterpolation
             "AMIInterpolation<SourcePatch, TargetPatch>::AMIInterpolation"
             "("
             "    const AMIInterpolation<SourcePatch, TargetPatch>&, "
-            "    const label, "
+            "    const labelList&, "
             "    const labelList&"
             ")"
         )   << "Size mismatch." << nl
diff --git a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.H b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.H
index 52d5b0787ff..7f0237dac4e 100644
--- a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.H
+++ b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.H
@@ -310,6 +310,7 @@ class AMIInterpolation
                 const bool output
             );
 
+
         // Constructor helper
 
             static void agglomerate
@@ -328,6 +329,7 @@ class AMIInterpolation
                 autoPtr<mapDistribute>& tgtMap
             );
 
+
 public:
 
     // Constructors
@@ -385,9 +387,8 @@ public:
                 //- Return const access to source patch weights
                 inline const scalarListList& srcWeights() const;
 
-                //- Source map pointer - valid only if singlePatchProc=-1.
-                //  This gets
-                //  source data into a form to be consumed by
+                //- Source map pointer - valid only if singlePatchProc = -1
+                //  This gets source data into a form to be consumed by
                 //  tgtAddress, tgtWeights
                 inline const mapDistribute& srcMap() const;
 
@@ -403,9 +404,8 @@ public:
                 //- Return const access to target patch weights
                 inline const scalarListList& tgtWeights() const;
 
-                //- Target map pointer -  valid only if singlePatchProc=-1.
-                //  This gets
-                //  target data into a form to be consumed by
+                //- Target map pointer - valid only if singlePatchProc = -1
+                //  This gets target data into a form to be consumed by
                 //  srcAddress, srcWeights
                 inline const mapDistribute& tgtMap() const;
 
-- 
GitLab