Skip to content

Commit

Permalink
Move named paramters to seperate namespace and re-export it to the ka…
Browse files Browse the repository at this point in the history
…mping namespace.
  • Loading branch information
niklas-uhl committed Jan 14, 2025
1 parent 10edc58 commit 12298bb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions include/kamping/named_parameters.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ namespace internal {
struct unused_tparam {};
} // namespace internal

namespace params {

//// @addtogroup kamping_named_parameters
/// @{

Expand Down Expand Up @@ -1319,4 +1321,7 @@ inline auto send_recv_type_out(MPI_Datatype& send_recv_type) {
MPI_Datatype>(send_recv_type);
}
/// @}

} // namespace params
using namespace params;
} // namespace kamping
4 changes: 4 additions & 0 deletions include/kamping/named_parameters_detail/status_parameters.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

// This file is part of KaMPIng.
//
// Copyright 2023-2024 The KaMPIng Authors
Expand All @@ -20,6 +21,7 @@
#include "kamping/status.hpp"

namespace kamping {
namespace params {
/// @addtogroup kamping_mpi_utility
/// @{

Expand Down Expand Up @@ -110,4 +112,6 @@ inline auto statuses_out() {
}

/// @}
} // namespace params
using namespace params;
} // namespace kamping

0 comments on commit 12298bb

Please sign in to comment.