mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: add 'this->' qualifier to find methods in base case
This commit is contained in:
@ -86,7 +86,7 @@ void Foam::gnuplotSetWriter<Type>::write
|
||||
|
||||
forAll(valueSets, i)
|
||||
{
|
||||
writeTable(points, *valueSets[i], os);
|
||||
this->writeTable(points, *valueSets[i], os);
|
||||
os << "e" << nl;
|
||||
}
|
||||
}
|
||||
@ -131,7 +131,7 @@ void Foam::gnuplotSetWriter<Type>::write
|
||||
|
||||
forAll(valueSets, i)
|
||||
{
|
||||
writeTable(trackPoints[trackI], valueSets[i][trackI], os);
|
||||
this->writeTable(trackPoints[trackI], valueSets[i][trackI], os);
|
||||
os << "e" << nl;
|
||||
}
|
||||
}
|
||||
|
||||
@ -96,7 +96,7 @@ void Foam::jplotSetWriter<Type>::write
|
||||
columns[i] = valueSets[i];
|
||||
}
|
||||
|
||||
writeTable(points, columns, os);
|
||||
this->writeTable(points, columns, os);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -74,7 +74,7 @@ void Foam::rawSetWriter<Type>::write
|
||||
columns[i] = valueSets[i];
|
||||
}
|
||||
|
||||
writeTable(points, columns, os);
|
||||
this->writeTable(points, columns, os);
|
||||
}
|
||||
|
||||
|
||||
@ -106,7 +106,7 @@ void Foam::rawSetWriter<Type>::write
|
||||
columns[i] = &valueSets[i][trackI];
|
||||
}
|
||||
|
||||
writeTable(points[trackI], columns, os);
|
||||
this->writeTable(points[trackI], columns, os);
|
||||
os << nl << nl;
|
||||
}
|
||||
}
|
||||
|
||||
@ -78,7 +78,7 @@ void Foam::xmgraceSetWriter<Type>::write
|
||||
<< valueSetNames[i] << '"' << nl
|
||||
<< "@target G0.S" << i << nl;
|
||||
|
||||
writeTable(points, *valueSets[i], os);
|
||||
this->writeTable(points, *valueSets[i], os);
|
||||
|
||||
os << '&' << nl;
|
||||
}
|
||||
@ -119,7 +119,7 @@ void Foam::xmgraceSetWriter<Type>::write
|
||||
os << "@ s" << sI << " legend " << '"'
|
||||
<< valueSetNames[i] << "_track" << i << '"' << nl
|
||||
<< "@target G0.S" << sI << nl;
|
||||
writeTable(trackPoints[trackI], valueSets[i][trackI], os);
|
||||
this->writeTable(trackPoints[trackI], valueSets[i][trackI], os);
|
||||
os << '&' << nl;
|
||||
|
||||
sI++;
|
||||
|
||||
Reference in New Issue
Block a user