is_view_impl.hpp 937 B

123456789101112131415161718192021222324252627282930313233
  1. /*=============================================================================
  2. Copyright (c) 2013 Mateusz Loskot
  3. Copyright (c) 2001-2011 Joel de Guzman
  4. Copyright (c) 2005-2006 Dan Marsden
  5. Distributed under the Boost Software License, Version 1.0. (See accompanying
  6. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. ==============================================================================*/
  8. #if !defined(BOOST_FUSION_STD_ARRAY_IS_VIEW_IMPL_01062013_1700)
  9. #define BOOST_FUSION_STD_ARRAY_IS_VIEW_IMPL_01062013_1700
  10. #include <boost/mpl/bool.hpp>
  11. namespace boost { namespace fusion
  12. {
  13. struct std_array_tag;
  14. namespace extension
  15. {
  16. template<typename Tag>
  17. struct is_view_impl;
  18. template<>
  19. struct is_view_impl<std_array_tag>
  20. {
  21. template<typename T>
  22. struct apply : mpl::false_
  23. {};
  24. };
  25. }
  26. }}
  27. #endif