mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-25 01:57:15 +02:00
18 lines
620 B
C++
18 lines
620 B
C++
/*=============================================================================
|
|
Copyright (c) 2018 Kohei Takahashi
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
==============================================================================*/
|
|
#include <boost/fusion/container/vector/detail/config.hpp>
|
|
|
|
#ifndef BOOST_FUSION_HAS_VARIADIC_VECTOR
|
|
int main() { }
|
|
#else
|
|
|
|
#include <boost/fusion/container/vector/vector.hpp>
|
|
#define FUSION_SEQUENCE boost::fusion::vector
|
|
#include "trivially_copyable.hpp"
|
|
#endif
|
|
|