From 756af8cc4cc1c794b7a454da652cc92382e7fdb9 Mon Sep 17 00:00:00 2001 From: Joel de Guzman Date: Wed, 30 Mar 2011 00:23:23 +0000 Subject: [PATCH] Include instead of forward declaring std::pair [SVN r70731] --- include/boost/fusion/adapted/std_pair.hpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/include/boost/fusion/adapted/std_pair.hpp b/include/boost/fusion/adapted/std_pair.hpp index 5792dd44..ffaecf89 100644 --- a/include/boost/fusion/adapted/std_pair.hpp +++ b/include/boost/fusion/adapted/std_pair.hpp @@ -11,12 +11,7 @@ #define BOOST_FUSION_ADAPTED_STD_PAIR_HPP #include - -namespace std -{ - template - struct pair; -} +#include BOOST_FUSION_ADAPT_TPL_STRUCT( (T1)(T2),(std::pair)(T1)(T2),(T1, first)(T2, second))