Skip to content

Commit

Permalink
deprecate c++14 implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelKoch committed Apr 17, 2024
1 parent 4d3240a commit 17f51dc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion include/ginkgo/core/distributed/matrix.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,10 @@ class Matrix
* shared values is automatically extracted.
* @return MPI request for the non-blocking communication.
*/
mpi::request communicate(const local_vector_type* local_b) const;
[[deprecated(
"The pre-C++17 interface of the distributed::Matrix is "
"deprecated, please update your C++ standard to 17. ")]] mpi::request
communicate(const local_vector_type* local_b) const;
#endif

void apply_impl(const LinOp* b, LinOp* x) const override;
Expand Down

0 comments on commit 17f51dc

Please sign in to comment.