]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/bimap/include/boost/bimap/support/lambda.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / bimap / include / boost / bimap / support / lambda.hpp
CommitLineData
7c673cae
FG
1// Boost.Bimap
2//
3// Copyright (c) 2006-2007 Matias Capeletto
4//
5// Distributed under the Boost Software License, Version 1.0.
6// (See accompanying file LICENSE_1_0.txt or copy at
7// http://www.boost.org/LICENSE_1_0.txt)
8
9/// \file support/lambda.hpp
10/// \brief Placeholders definition to help in bimap modify function
11
12#ifndef BOOST_BIMAP_SUPPORT_LAMBDA_HPP
13#define BOOST_BIMAP_SUPPORT_LAMBDA_HPP
14
15#if defined(_MSC_VER)
16#pragma once
17#endif
18
19#include <boost/config.hpp>
20
21#include <boost/lambda/lambda.hpp>
22
23namespace boost {
24namespace bimaps {
25
26namespace {
27
28/*
29boost::lambda::placeholder1_type & _first = boost::lambda::_1;
30boost::lambda::placeholder2_type & _second = boost::lambda::_2;
31
32boost::lambda::placeholder1_type & _left = boost::lambda::_1;
33boost::lambda::placeholder2_type & _right = boost::lambda::_2;
34*/
35
36boost::lambda::placeholder1_type & _key = boost::lambda::_1;
37boost::lambda::placeholder1_type & _data = boost::lambda::_1;
38
39}
40
41} // namespace bimaps
42} // namespace boost
43
44
45#endif // BOOST_BIMAP_SUPPORT_LAMBDA_HPP
46