biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / redpanda / seastar-fixes.patch
blobc6b12b88c149848e3b6803e8d4fb476dd7c30e11
1 diff --git a/include/seastar/core/std-coroutine.hh b/include/seastar/core/std-coroutine.hh
2 index ea364bee..57474529 100644
3 --- a/include/seastar/core/std-coroutine.hh
4 +++ b/include/seastar/core/std-coroutine.hh
5 @@ -87,7 +87,7 @@ class coroutine_handle<void> {
7 explicit operator bool() const noexcept { return _pointer; }
9 - static coroutine_handle from_address(void* ptr) noexcept {
10 + static constexpr coroutine_handle from_address(void* ptr) noexcept {
11 coroutine_handle hndl;
12 hndl._pointer = ptr;
13 return hndl;