enabler.hpp 640 B

12345678910111213141516171819202122
  1. /*=============================================================================
  2. Copyright (c) 2015 Kohei Takahashi
  3. Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. ==============================================================================*/
  6. #ifndef BOOST_FUSION_SUPPORT_DETAIL_ENABLER_12102015_0346
  7. #define BOOST_FUSION_SUPPORT_DETAIL_ENABLER_12102015_0346
  8. #include <boost/config.hpp>
  9. namespace boost { namespace fusion { namespace detail
  10. {
  11. struct enabler_ {};
  12. BOOST_STATIC_CONSTEXPR enabler_ enabler = {};
  13. }}}
  14. #endif