From 9b6b432157105ad3da91be7194c5cdab5ca3d4d9 Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Mon, 8 Nov 2004 15:15:49 +0000 Subject: [PATCH] MSVC 6.5 fix [SVN r26150] --- include/boost/mpl/vector/aux_/tag.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/mpl/vector/aux_/tag.hpp b/include/boost/mpl/vector/aux_/tag.hpp index 940f490..29a0a3b 100644 --- a/include/boost/mpl/vector/aux_/tag.hpp +++ b/include/boost/mpl/vector/aux_/tag.hpp @@ -15,6 +15,7 @@ // $Revision$ #include +#include namespace boost { namespace mpl { namespace aux { @@ -23,7 +24,7 @@ struct v_iter_tag; #if defined(BOOST_MPL_CFG_TYPEOF_BASED_SEQUENCES) struct vector_tag; #else -template< long N > struct vector_tag; +template< BOOST_MPL_AUX_NTTP_DECL(long, N) > struct vector_tag; #endif }}}