$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r67255 - trunk/boost/msm/back
From: christophe.j.henry_at_[hidden]
Date: 2010-12-15 17:20:09
Author: chenry
Date: 2010-12-15 17:20:09 EST (Wed, 15 Dec 2010)
New Revision: 67255
URL: http://svn.boost.org/trac/boost/changeset/67255
Log:
fixed possible VC8 problem
Text files modified: 
   trunk/boost/msm/back/state_machine.hpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/msm/back/state_machine.hpp
==============================================================================
--- trunk/boost/msm/back/state_machine.hpp	(original)
+++ trunk/boost/msm/back/state_machine.hpp	2010-12-15 17:20:09 EST (Wed, 15 Dec 2010)
@@ -224,14 +224,14 @@
         visitors                                                      m_state_visitors;
     };
 
-    template <class StateType,class Enable=void>
+    template <class StateType,class Enable=int>
     struct deferred_msg_queue_helper 
     {
     };
     template <class StateType>
     struct deferred_msg_queue_helper<StateType,
         typename ::boost::enable_if< 
-            typename ::boost::msm::back::has_fsm_deferred_events<StateType>::type >::type> 
+            typename ::boost::msm::back::has_fsm_deferred_events<StateType>::type,int >::type> 
     {
     public:
         deferred_msg_queue_helper():m_deferred_events_queue(){}