Fix broken C+03 support

This commit is contained in:
Ion Gaztañaga
2024-01-05 13:17:32 +01:00
parent 687ede9281
commit 38a03cc08c
11 changed files with 106 additions and 187 deletions

View File

@@ -9,6 +9,8 @@
//////////////////////////////////////////////////////////////////////////////
#include <boost/interprocess/detail/workaround.hpp>
#if BOOST_CXX_VERSION >=201103L
//[doc_unordered_map
#include <boost/interprocess/managed_shared_memory.hpp>
#include <boost/interprocess/allocators/allocator.hpp>
@@ -95,4 +97,9 @@ int main ()
return 0;
}
//]
#else
int main()
{
return 0;
}
#endif //#if BOOST_CXX_VERSION >=201103L