mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-17 14:22:13 +02:00
20 lines
563 B
C++
20 lines
563 B
C++
![]() |
/*=============================================================================
|
||
|
Copyright (C) 2015 Kohei Takahshi
|
||
|
|
||
|
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/deque/deque.hpp>
|
||
|
#include <boost/core/lightweight_test.hpp>
|
||
|
|
||
|
#define FUSION_SEQUENCE deque
|
||
|
#include "nest.hpp"
|
||
|
|
||
|
int
|
||
|
main()
|
||
|
{
|
||
|
test();
|
||
|
return boost::report_errors();
|
||
|
}
|
||
|
|