123456789101112131415161718192021222324252627282930 |
- #ifndef BOOST_FUSION_SUPPORT_AS_CONST_HPP
- #define BOOST_FUSION_SUPPORT_AS_CONST_HPP
- #include <boost/config.hpp>
- #include <boost/fusion/support/config.hpp>
- namespace boost { namespace fusion { namespace extension
- {
-
-
-
-
-
-
- template <typename T>
- BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
- inline const T& as_const(const T& obj) BOOST_NOEXCEPT
- {
- return obj;
- }
- }}}
- #endif
|