From c78aac71031800a122009adc9d8283fe9977fb6b Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Tue, 4 May 2021 10:19:01 -0400 Subject: [PATCH] Comment unused arguments --- include/deal.II/distributed/tria.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/include/deal.II/distributed/tria.h b/include/deal.II/distributed/tria.h index 7266bfe40c..7b42ed3535 100644 --- a/include/deal.II/distributed/tria.h +++ b/include/deal.II/distributed/tria.h @@ -973,10 +973,11 @@ namespace parallel * constructed (see also the class documentation). */ explicit Triangulation( - const MPI_Comm &mpi_communicator, + const MPI_Comm & /*mpi_communicator*/, const typename dealii::Triangulation::MeshSmoothing - smooth_grid = (dealii::Triangulation::none), - const Settings settings = default_setting) = delete; + /*smooth_grid*/ + = (dealii::Triangulation::none), + const Settings /*settings*/ = default_setting) = delete; /** * Dummy replacement to allow for better error messages when compiling @@ -993,7 +994,7 @@ namespace parallel * this class. */ virtual void - save(const std::string &filename) const override + save(const std::string & /*filename*/) const override {} /** @@ -1001,8 +1002,8 @@ namespace parallel * this class. */ virtual void - load(const std::string &filename, - const bool autopartition = true) override + load(const std::string & /*filename*/, + const bool /*autopartition*/ = true) override {} /** -- 2.39.5