From b401b56c33a1cc9d0e566a18b63b489d1d87c7de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sat, 10 Jan 2026 22:58:53 +0100 Subject: [PATCH] Add shared_node_pool to pool testing. --- test/node_pool_test.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/node_pool_test.cpp b/test/node_pool_test.cpp index e7f6401..d4bca5f 100644 --- a/test/node_pool_test.cpp +++ b/test/node_pool_test.cpp @@ -22,5 +22,11 @@ int main () if(!test::test_all_node_pool()) return 1; + typedef ipcdetail::shared_node_pool + shared_node_pool_t; + + if(!test::test_all_node_pool()) + return 1; + return 0; }