From c766405a3f33c5c853d4b91e96edba3dea5ea201 Mon Sep 17 00:00:00 2001 From: evoskuil Date: Sat, 16 May 2026 19:19:38 -0400 Subject: [PATCH] Fix xcode size_t variant issue. --- test/protocols/native/native_setup_fixture.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/protocols/native/native_setup_fixture.hpp b/test/protocols/native/native_setup_fixture.hpp index eda563e4..d0707efa 100644 --- a/test/protocols/native/native_setup_fixture.hpp +++ b/test/protocols/native/native_setup_fixture.hpp @@ -50,7 +50,7 @@ struct native_setup_fixture system::data_chunk ws_get_data(std::string_view message); // 0_32 vs {} for xcode variant issue. - void notify(node::chase event_, node::event_value value=0_32); + void notify(node::chase event_, node::event_value value=0_u32); protected: server::configuration config_;