Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix doxygen copydoc reference #6199

Merged
merged 1 commit into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ namespace aspect
* Evaluate the strain rate residual for each component at the top face of the current cell
* if it lies at the surface boundary.
*
* @copydoc DataPostprocessorTensor<dim>::evaluate_vector_field()
* @copydoc dealii::DataPostprocessor<dim>::evaluate_vector_field()
*/
void
evaluate_vector_field(const DataPostprocessorInputs::Vector<dim> &input_data,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ namespace aspect
/**
* Evaluate the velocity residual for the current cell.
*
* @copydoc DataPostprocessorVector<dim>::evaluate_vector_field()
* @copydoc dealii::DataPostprocessor<dim>::evaluate_vector_field()
*/
void
evaluate_vector_field(const DataPostprocessorInputs::Vector<dim> &input_data,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ namespace aspect
/**
* Evaluate the dynamic topography for the current cell.
*
* @copydoc DataPostprocessorScalar<dim>::evaluate_vector_field()
* @copydoc dealii::DataPostprocessor<dim>::evaluate_vector_field()
*/
void
evaluate_vector_field(const DataPostprocessorInputs::Vector<dim> &input_data,
Expand Down
2 changes: 1 addition & 1 deletion include/aspect/postprocess/visualization/geoid.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ namespace aspect
initialize () override;

/**
* @copydoc DataPostprocessorScalar<dim>::evaluate_vector_field()
* @copydoc dealii::DataPostprocessor<dim>::evaluate_vector_field()
*/
void
evaluate_vector_field(const DataPostprocessorInputs::Vector<dim> &input_data,
Expand Down
2 changes: 1 addition & 1 deletion include/aspect/postprocess/visualization/heat_flux_map.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ namespace aspect
/**
* Compute the heat flux for the given input cell.
*
* @copydoc DataPostprocessorScalar<dim>::evaluate_vector_field()
* @copydoc dealii::DataPostprocessor<dim>::evaluate_vector_field()
*/
void
evaluate_vector_field(const DataPostprocessorInputs::Vector<dim> &input_data,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ namespace aspect
/**
* Evaluate the dynamic topography for the current cell.
*
* @copydoc DataPostprocessorScalar<dim>::evaluate_vector_field()
* @copydoc dealii::DataPostprocessor<dim>::evaluate_vector_field()
*/
void
evaluate_vector_field(const DataPostprocessorInputs::Vector<dim> &input_data,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ namespace aspect
/**
* Evaluate the dynamic topography for the current cell.
*
* @copydoc DataPostprocessorScalar<dim>::evaluate_vector_field()
* @copydoc dealii::DataPostprocessor<dim>::evaluate_vector_field()
*/
void
evaluate_vector_field(const DataPostprocessorInputs::Vector<dim> &input_data,
Expand Down
Loading