From bad90ed378f7387e63cc94bf4767ee485c2fae91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sun, 30 Nov 2025 16:52:49 +0100 Subject: [PATCH] Fix copy-paste error: use boost/container/xxx instead of wrong boost/interprocess/xxx --- include/boost/container/detail/is_constructible.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/container/detail/is_constructible.hpp b/include/boost/container/detail/is_constructible.hpp index 35ceaec..db93b6e 100644 --- a/include/boost/container/detail/is_constructible.hpp +++ b/include/boost/container/detail/is_constructible.hpp @@ -19,8 +19,8 @@ # pragma once #endif -#include -#include +#include +#include #include // for size_t #include //declval @@ -42,7 +42,7 @@ namespace boost_container_is_constructible { namespace container { template - struct is_constructible\ + struct is_constructible { private: typedef char yes_type; @@ -175,6 +175,6 @@ namespace boost_container_is_constructible { #endif -#include +#include #endif //BOOST_CONTAINER_DETAIL_IS_CONSTRUCTIBLE_HPP