Fix Linux/gcc compilation (#795)

Fixes #803
This commit is contained in:
Alex Kremer
2023-08-02 13:44:03 +01:00
committed by GitHub
parent 98d0a963dc
commit 24f69acd9e
81 changed files with 1259 additions and 1282 deletions

View File

@@ -39,7 +39,7 @@ class RPCDefaultProcessorTest : public HandlerBaseTest
TEST_F(RPCDefaultProcessorTest, ValidInput)
{
runSpawn([](auto& yield) {
runSpawn([](auto yield) {
HandlerMock handler;
RPC::detail::DefaultProcessor<HandlerMock> processor;
@@ -56,7 +56,7 @@ TEST_F(RPCDefaultProcessorTest, ValidInput)
TEST_F(RPCDefaultProcessorTest, NoInputVaildCall)
{
runSpawn([](auto& yield) {
runSpawn([](auto yield) {
HandlerWithoutInputMock handler;
RPC::detail::DefaultProcessor<HandlerWithoutInputMock> processor;
@@ -71,7 +71,7 @@ TEST_F(RPCDefaultProcessorTest, NoInputVaildCall)
TEST_F(RPCDefaultProcessorTest, InvalidInput)
{
runSpawn([](auto& yield) {
runSpawn([](auto yield) {
HandlerMock handler;
RPC::detail::DefaultProcessor<HandlerMock> processor;