Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
# These are directories used by IDEs for storing settings
.idea/
.vscode/
.cache/

# These are common Python virtual enviornment directory names
venv/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include <cstddef>
#include <memory>
#include <string>
#include <utility>

namespace parallelzone::mpi_helpers::detail_ {

Expand Down
3 changes: 2 additions & 1 deletion tests/cxx/unit_tests/parallelzone/task/argument_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include "../catch.hpp"
#include <iostream>
#include <parallelzone/task/argument_wrapper.hpp>
#include <utility>
#include <vector>

using namespace parallelzone::task;
Expand Down Expand Up @@ -119,4 +120,4 @@ TEST_CASE("ArgumentWrapper<T>") {
REQUIRE(std::as_const(by_rref).value().data() == pvalue);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include "../../catch.hpp"
#include <iostream>
#include <parallelzone/task/detail_/task_wrapper_.hpp>
#include <utility>
#include <vector>

using namespace parallelzone::task;
Expand Down Expand Up @@ -254,4 +255,4 @@ TEST_CASE("make_outer_lambda_") {
auto lambda2 = detail_::make_outer_lambda_(lambda, std::move(a_vector));
REQUIRE(std::any_cast<vector_type&&>(lambda2()).data() == pa_vector);
}
}
}