mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Converted constant reference to primitive arguments to constant primitive arguments.
This commit is contained in:
@ -220,7 +220,7 @@ void Foam::writeFuns::writePointDataHeader
|
||||
}
|
||||
|
||||
|
||||
void Foam::writeFuns::insert(const scalar& pt, DynamicList<floatScalar>& dest)
|
||||
void Foam::writeFuns::insert(const scalar pt, DynamicList<floatScalar>& dest)
|
||||
{
|
||||
dest.append(float(pt));
|
||||
}
|
||||
|
||||
@ -86,7 +86,7 @@ public:
|
||||
|
||||
// Convert to VTK and store
|
||||
|
||||
static void insert(const scalar&, DynamicList<floatScalar>&);
|
||||
static void insert(const scalar, DynamicList<floatScalar>&);
|
||||
static void insert(const point&, DynamicList<floatScalar>&);
|
||||
static void insert(const sphericalTensor&, DynamicList<floatScalar>&);
|
||||
static void insert(const symmTensor&, DynamicList<floatScalar>&);
|
||||
|
||||
Reference in New Issue
Block a user