Skip to content

Instantly share code, notes, and snippets.

@yak1ex
yak1ex / std_tuple_adapter.hpp
Created May 31, 2011 14:52
Fusion adapter for variadic std::tuple
#ifndef YAK_FUSION_STD_TUPLE_ADAPTER_HPP
#define YAK_FUSION_STD_TUPLE_ADAPTER_HPP
#include <boost/config.hpp>
#ifdef BOOST_NO_VARIADIC_TEMPLATES
#error Need to enable variadic templates
#endif
#include <cstddef>
#include <tuple>