Skip to content
Snippets Groups Projects
Commit 7cd4b410 authored by Dmitri Naumov's avatar Dmitri Naumov Committed by Tom Fischer
Browse files

Rename function argument to match definition

parent a6651255
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ public:
/// Provide the mesh to write and set if compression should be used.
explicit VtuInterface(const MeshLib::Mesh* mesh,
int dataMode = vtkXMLWriter::Appended,
bool compressed = false);
bool compress = false);
/// Read an unstructured grid from a VTU file.
/// \return The converted mesh or a nullptr if reading failed
......
......@@ -95,7 +95,7 @@ public:
Scalar& GetValueReference(vtkIdType idx) const;
Scalar GetValue(vtkIdType idx) const override;
void GetTypedTuple(vtkIdType tupleId, Scalar* t) const override;
void GetTypedTuple(vtkIdType tupleId, Scalar* tuple) const override;
void SetTypedTuple(vtkIdType i, const Scalar* t) override;
void InsertTypedTuple(vtkIdType i, const Scalar* t) override;
vtkIdType InsertNextTypedTuple(const Scalar* t) override;
......@@ -111,7 +111,7 @@ protected:
const std::vector<Node*>* _nodes{nullptr};
private:
vtkIdType Lookup(const Scalar& val, vtkIdType startIndex);
vtkIdType Lookup(const Scalar& val, vtkIdType index);
double* TempDoubleArray{nullptr};
};
......
......@@ -34,7 +34,7 @@ std::vector<Output> createOutput(
std::vector<std::unique_ptr<MeshLib::Mesh>>& meshes);
std::vector<Output> createOutputs(
const BaseLib::ConfigTree& config,
const BaseLib::ConfigTree& output_configs,
std::string const& output_directory,
std::vector<std::unique_ptr<MeshLib::Mesh>>& meshes);
} // namespace ProcessLib
......@@ -31,7 +31,7 @@ class Process;
class Output
{
public:
Output(std::unique_ptr<OutputFormat>&& output_file,
Output(std::unique_ptr<OutputFormat>&& output_format,
bool const output_nonlinear_iteration_results,
OutputDataSpecification&& output_data_specification,
std::vector<std::string>&& mesh_names_for_output,
......
......@@ -306,7 +306,7 @@ protected:
* member of this class, @c _local_to_global_index_map.
*/
void constructDofTableOfSpecifiedProcessStaggeredScheme(
const int specified_prosess_id);
const int specified_process_id);
/**
* Get the address of a LocalToGlobalIndexMap, and the status of its memory.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment