Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:59:18

0001 // Copyright Daniel Wallin 2006.
0002 // Distributed under the Boost Software License, Version 1.0.
0003 // (See accompanying file LICENSE_1_0.txt or copy at
0004 // http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 #ifndef BOOST_PARAMETER_AUX_AS_LVALUE_HPP
0007 #define BOOST_PARAMETER_AUX_AS_LVALUE_HPP
0008 
0009 namespace boost { namespace parameter { namespace aux {
0010 
0011     template <typename T>
0012     T const& as_lvalue(T const& value)
0013     {
0014         return value;
0015     }
0016 
0017     template <typename T>
0018     T& as_lvalue(T& value)
0019     {
0020         return value;
0021     }
0022 }}} // namespace boost::parameter::aux
0023 
0024 #endif  // include guard
0025