From b12499e3fb7adbd6b4f7425ae0254d3dbb767683 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Tue, 27 Feb 2024 00:12:47 +0100 Subject: [PATCH] Add missing header --- .gitignore | 1 + .../boost/interprocess/sync/interprocess_recursive_mutex.hpp | 1 + test/condition_test_template.hpp | 1 + test/expand_bwd_test_template.hpp | 1 + test/intermodule_singleton_test.cpp | 1 + test/memory_algorithm_test_template.hpp | 1 + test/mutex_test_template.hpp | 2 +- test/named_allocation_test_template.hpp | 1 + test/segment_manager_test.cpp | 1 + test/sharable_mutex_test_template.hpp | 1 + 10 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b15530a..e854581 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /test/test_intermod_holder.hpp.wrk /test/intermod_holder_dll.hpp /test/test_intermod_holder_main.cpp.wrk +/proj/vs diff --git a/include/boost/interprocess/sync/interprocess_recursive_mutex.hpp b/include/boost/interprocess/sync/interprocess_recursive_mutex.hpp index 95527ee..dc5c5a0 100644 --- a/include/boost/interprocess/sync/interprocess_recursive_mutex.hpp +++ b/include/boost/interprocess/sync/interprocess_recursive_mutex.hpp @@ -39,6 +39,7 @@ #include #include +#include #include #include diff --git a/test/condition_test_template.hpp b/test/condition_test_template.hpp index 0e45003..2f31031 100644 --- a/test/condition_test_template.hpp +++ b/test/condition_test_template.hpp @@ -27,6 +27,7 @@ #include #include "util.hpp" #include +#include namespace boost{ namespace interprocess{ diff --git a/test/expand_bwd_test_template.hpp b/test/expand_bwd_test_template.hpp index c2bc42b..4616676 100644 --- a/test/expand_bwd_test_template.hpp +++ b/test/expand_bwd_test_template.hpp @@ -17,6 +17,7 @@ #include //std::equal #include #include +#include namespace boost { namespace interprocess { namespace test { diff --git a/test/intermodule_singleton_test.cpp b/test/intermodule_singleton_test.cpp index 73e378e..2c21bbe 100644 --- a/test/intermodule_singleton_test.cpp +++ b/test/intermodule_singleton_test.cpp @@ -11,6 +11,7 @@ #include #include #include //for std::abort +#include using namespace boost::interprocess; diff --git a/test/memory_algorithm_test_template.hpp b/test/memory_algorithm_test_template.hpp index d857bea..597e723 100644 --- a/test/memory_algorithm_test_template.hpp +++ b/test/memory_algorithm_test_template.hpp @@ -19,6 +19,7 @@ #include #include //std::nothrow #include //std::memset +#include namespace boost { namespace interprocess { namespace test { diff --git a/test/mutex_test_template.hpp b/test/mutex_test_template.hpp index fccee83..b1c7375 100644 --- a/test/mutex_test_template.hpp +++ b/test/mutex_test_template.hpp @@ -27,7 +27,7 @@ #include "util.hpp" #include #include - +#include #include namespace boost { namespace interprocess { namespace test { diff --git a/test/named_allocation_test_template.hpp b/test/named_allocation_test_template.hpp index 872ee7d..5a0819f 100644 --- a/test/named_allocation_test_template.hpp +++ b/test/named_allocation_test_template.hpp @@ -27,6 +27,7 @@ #include #include #include +#include // local #include "get_process_id_name.hpp" diff --git a/test/segment_manager_test.cpp b/test/segment_manager_test.cpp index 3bc5656..5724a90 100644 --- a/test/segment_manager_test.cpp +++ b/test/segment_manager_test.cpp @@ -25,6 +25,7 @@ #include #include #include +#include using namespace boost::interprocess; diff --git a/test/sharable_mutex_test_template.hpp b/test/sharable_mutex_test_template.hpp index a832feb..6288903 100644 --- a/test/sharable_mutex_test_template.hpp +++ b/test/sharable_mutex_test_template.hpp @@ -31,6 +31,7 @@ #include #include #include "util.hpp" +#include namespace boost { namespace interprocess { namespace test {