• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*=============================================================================
2     Copyright (c) 2018 Nikita Kniazev
3 
4     Distributed under the Boost Software License, Version 1.0. (See accompanying
5     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 ==============================================================================*/
7 #include <boost/fusion/support/is_view.hpp>
8 #include <boost/static_assert.hpp>
9 
10 
11 // Make sure fusion::is_view can be used with non fusion types.
12 struct incomplete;
13 BOOST_STATIC_ASSERT(!boost::fusion::traits::is_view<incomplete>::value);
14 
main()15 int main() { }
16