Skip to content

Commit

Permalink
Fix compilation with TSAN and serial backend
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber authored and psychocoderHPC committed Jun 28, 2023
1 parent 8fe1d1c commit 375f4f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/alpaka/mem/buf/cpu/Copy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ namespace alpaka
}
#endif

ALPAKA_FN_HOST auto operator()() const -> void
ALPAKA_FN_HOST auto operator()() const noexcept(ALPAKA_DEBUG < ALPAKA_DEBUG_FULL) -> void
{
ALPAKA_DEBUG_MINIMAL_LOG_SCOPE;

Expand Down
2 changes: 1 addition & 1 deletion include/alpaka/mem/buf/cpu/Set.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ namespace alpaka
}
#endif

ALPAKA_FN_HOST auto operator()() const -> void
ALPAKA_FN_HOST auto operator()() const noexcept(ALPAKA_DEBUG < ALPAKA_DEBUG_FULL) -> void
{
ALPAKA_DEBUG_MINIMAL_LOG_SCOPE;

Expand Down

0 comments on commit 375f4f0

Please sign in to comment.