]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/lambda/bind.hpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / boost / lambda / bind.hpp
CommitLineData
7c673cae
FG
1// -- bind.hpp -- Boost Lambda Library --------------------------------------
2
3// Copyright (C) 1999-2001 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi)
4// Gary Powell (gwpowell@hotmail.com)
5//
6// Distributed under the Boost Software License, Version 1.0. (See
7// accompanying file LICENSE_1_0.txt or copy at
8// http://www.boost.org/LICENSE_1_0.txt)
9//
10// For more information, see http://www.boost.org
11
12#ifndef BOOST_LAMBDA_BIND_HPP
13#define BOOST_LAMBDA_BIND_HPP
14
15#include "boost/lambda/core.hpp"
16
1e59de90
TL
17// Required for std::is_assignable to work on the result of bind()
18#include "boost/lambda/detail/operator_actions.hpp"
19#include "boost/lambda/detail/operator_lambda_func_base.hpp"
20#include "boost/lambda/detail/operator_return_type_traits.hpp"
21
7c673cae 22#include "boost/lambda/detail/bind_functions.hpp"
1e59de90 23
7c673cae 24#endif