Add convert tests for non-assoc containers.

This commit is contained in:
Kohei Takahashi
2015-08-25 23:36:32 +09:00
parent 1bde5c6fa3
commit 10d9f0ffba
8 changed files with 149 additions and 0 deletions

View File

@ -0,0 +1,25 @@
/*=============================================================================
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