Skip to content

Commit bad90ed

Browse files
committed
Fix copy-paste error: use boost/container/xxx instead of wrong boost/interprocess/xxx
1 parent 9ae8e43 commit bad90ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/boost/container/detail/is_constructible.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
# pragma once
2020
#endif
2121

22-
#include <boost/interprocess/detail/config_begin.hpp>
23-
#include <boost/interprocess/detail/workaround.hpp>
22+
#include <boost/container/detail/config_begin.hpp>
23+
#include <boost/container/detail/workaround.hpp>
2424

2525
#include <cstddef> // for size_t
2626
#include <boost/move/utility_core.hpp> //declval
@@ -42,7 +42,7 @@ namespace boost_container_is_constructible {
4242
namespace container {
4343

4444
template <typename T, typename ...Args>
45-
struct is_constructible\
45+
struct is_constructible
4646
{
4747
private:
4848
typedef char yes_type;
@@ -175,6 +175,6 @@ namespace boost_container_is_constructible {
175175

176176
#endif
177177

178-
#include <boost/interprocess/detail/config_end.hpp>
178+
#include <boost/container/detail/config_end.hpp>
179179

180180
#endif //BOOST_CONTAINER_DETAIL_IS_CONSTRUCTIBLE_HPP

0 commit comments

Comments
 (0)