| 30 | |
| 31 | template <typename X, typename Subforest> |
| 32 | constexpr auto make_node(X x, Subforest subforest) { |
| 33 | return node<X, Subforest>{x, subforest}; |
| 34 | } |
| 35 | |
| 36 | namespace boost { namespace hana { |
| 37 | ////////////////////////////////////////////////////////////////////////// |