From: Daniel Arndt Date: Tue, 4 May 2021 14:19:01 +0000 (-0400) Subject: Comment unused arguments X-Git-Tag: v9.3.0-rc1~140^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c78aac71031800a122009adc9d8283fe9977fb6b;p=dealii.git Comment unused arguments --- 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 {} /**