Skip to content

Commit 89158ad

Browse files
committed
Replaced apply call
Signed-off-by: Denis Mindolin <[email protected]>
1 parent aa89c0c commit 89158ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

quantum/util/impl/quantum_sequencer_lite_impl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
#include <quantum/util/quantum_drain_guard.h>
2323
#include <quantum/quantum_promise.h>
2424
#include <quantum/quantum_traits.h>
25+
#include <quantum/impl/quantum_stl_impl.h>
2526
#include <stdexcept>
26-
#include <tuple>
2727

2828
namespace Bloomberg {
2929
namespace quantum {
@@ -201,7 +201,7 @@ SequencerLite<SequenceKey, Hash, KeyEqual, Allocator>::wrap(
201201
FUNC&& func, ARGS&&... args)
202202
{
203203
return [f = func, a = std::make_tuple(std::forward<ARGS>(args)...)](VoidContextPtr ctx) -> int {
204-
return std::apply(
204+
return apply(
205205
[f, ctx](auto&&... args) { return f(ctx, std::forward<decltype(args)>(args)...); },
206206
std::move(a));
207207
};

0 commit comments

Comments
 (0)