Skip to content

Commit 91e31c7

Browse files
committed
test: Guard use of UNIFEX_NO_COROUTINES behind defined()
1 parent 50a4ec8 commit 91e31c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/utils/utils/execution_test.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ struct ExecutionClientRPCTest : test::ExecutionTestMixin<test::ClientServerRPCTe
162162
{
163163
using Base = test::ClientServerRPCTest<RPC>;
164164

165-
#if !UNIFEX_NO_COROUTINES
165+
#if defined(UNIFEX_NO_COROUTINES) && !UNIFEX_NO_COROUTINES
166166
template <class RPCHandler, class... ClientFunctions>
167167
void register_and_perform_requests(RPCHandler&& handler, ClientFunctions&&... client_functions)
168168
{

0 commit comments

Comments
 (0)