Include <utility> instead of forward declaring std::pair

[SVN r70731]
This commit is contained in:
Joel de Guzman
2011-03-30 00:23:23 +00:00
parent 407657d56c
commit 756af8cc4c

View File

@ -11,12 +11,7 @@
#define BOOST_FUSION_ADAPTED_STD_PAIR_HPP
#include <boost/fusion/adapted/struct/adapt_struct.hpp>
namespace std
{
template<class T1, class T2>
struct pair;
}
#include <utility>
BOOST_FUSION_ADAPT_TPL_STRUCT(
(T1)(T2),(std::pair)(T1)(T2),(T1, first)(T2, second))