Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ target_link_libraries(boost_fusion
Boost::container_hash
Boost::core
Boost::function_types
Boost::functional
Boost::mpl
Boost::preprocessor
Boost::tuple
Expand Down
9 changes: 2 additions & 7 deletions build.jam
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,19 @@ constant boost_dependencies :
/boost/container_hash//boost_container_hash
/boost/core//boost_core
/boost/function_types//boost_function_types
/boost/functional//boost_functional
/boost/mpl//boost_mpl
/boost/preprocessor//boost_preprocessor
/boost/tuple//boost_tuple
/boost/type_traits//boost_type_traits
/boost/typeof//boost_typeof
/boost/utility//boost_utility ;

project /boost/fusion
: common-requirements
<include>include
;
project /boost/fusion ;

explicit
[ alias boost_fusion : : : : <library>$(boost_dependencies) ]
[ alias boost_fusion : : : : <include>include <library>$(boost_dependencies) ]
[ alias all : boost_fusion test ]
;

call-if : boost-library fusion
;

2 changes: 1 addition & 1 deletion include/boost/fusion/view/identity_view/identity_view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#include <boost/fusion/support/config.hpp>
#include <boost/fusion/view/transform_view.hpp>
#include <boost/functional/identity.hpp>
#include <boost/core/identity.hpp>
#include <boost/utility/result_of.hpp>

namespace boost { namespace fusion {
Expand Down
Loading