Skip to content

Commit

Permalink
Remove unused parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
mquevill committed Jan 17, 2020
1 parent 14b4f0d commit 37932f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/mxx/datatypes.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,8 @@ struct datatype_name {
: mpi_name(mpi_name), c_name(c_name), typeid_name(typeid_name) {}

datatype_name() {}
datatype_name(const datatype_name& o) = default;
datatype_name(datatype_name&& o) = default;
datatype_name(const datatype_name&) = default;
datatype_name(datatype_name&&) = default;
};

inline std::ostream& operator<<(std::ostream& os, const datatype_name& n) {
Expand Down
2 changes: 1 addition & 1 deletion include/mxx/env.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

namespace mxx {

inline void my_mpi_errorhandler(MPI_Comm* comm, int* error_code, ...) {
inline void my_mpi_errorhandler(MPI_Comm* /*comm*/, int* error_code, ...) {
char buf[MPI_MAX_ERROR_STRING];
int strlen;
int error_class;
Expand Down

0 comments on commit 37932f4

Please sign in to comment.