mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-16 13:52:24 +02:00
26 lines
624 B
C++
26 lines
624 B
C++
![]() |
/*=============================================================================
|
||
|
Copyright (c) 2015 Kohei Takahashi
|
||
|
|
||
|
Use modification and distribution are subject to 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/config.hpp>
|
||
|
|
||
|
#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
|
||
|
|
||
|
#include <tuple>
|
||
|
#include <boost/fusion/include/std_tuple.hpp>
|
||
|
|
||
|
#define FUSION_SEQUENCE std::tuple
|
||
|
#include "convert.hpp"
|
||
|
|
||
|
#else
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
#endif
|