Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:39:09

0001 // -- control_structures.hpp -- Boost Lambda Library --------------------------
0002 // Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi)
0003 //
0004 // Distributed under the Boost Software License, Version 1.0. (See
0005 // accompanying file LICENSE_1_0.txt or copy at
0006 // http://www.boost.org/LICENSE_1_0.txt)
0007 //
0008 // For more information, see www.boost.org
0009 
0010 #ifndef BOOST_LAMBDA_CONTROL_STRUCTURES_HPP
0011 #define BOOST_LAMBDA_CONTROL_STRUCTURES_HPP
0012 
0013 
0014 #include "boost/lambda/core.hpp"
0015 
0016 // Arithmetic type promotion needed for if_then_else_return
0017 #include "boost/lambda/detail/operator_actions.hpp"
0018 #include "boost/lambda/detail/operator_return_type_traits.hpp"
0019 
0020 #include "boost/lambda/if.hpp"
0021 #include "boost/lambda/loops.hpp"
0022 
0023 #endif