Skip to content

Commit

Permalink
Merge pull request #1425 from NVIDIA/silence-gnu-warnings
Browse files Browse the repository at this point in the history
fix some build warnings
  • Loading branch information
ericniebler authored Oct 21, 2024
2 parents 4d8d194 + 037d194 commit 111d41b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion include/exec/system_context.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,6 @@ namespace exec {
__bulk_state_base(_Fn&& __fun, _Rcvr&& __rcvr)
: __fun_{std::move(__fun)}
, __rcvr_{std::move(__rcvr)} {
static_assert(offsetof(__bulk_state_base, __forward_args_helper_) == 0);
}
};

Expand Down
2 changes: 2 additions & 0 deletions test/stdexec/queries/test_forwarding_queries.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
#include <catch2/catch.hpp>
#include <stdexec/execution.hpp>

STDEXEC_PRAGMA_IGNORE_GNU("-Wdeprecated-declarations")

namespace ex = stdexec;

namespace {
Expand Down

0 comments on commit 111d41b

Please sign in to comment.