Update of /cvsroot/boost/boost/libs/statechart/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv22968/libs/statechart/test

Modified Files:
      Tag: RC_1_34_0
        TransitionTest.cpp 
Log Message:
Merged a fix for a couple of Intel9.1 failures from trunk to branch.

Index: TransitionTest.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/statechart/test/TransitionTest.cpp,v
retrieving revision 1.13.2.2
retrieving revision 1.13.2.3
diff -u -d -r1.13.2.2 -r1.13.2.3
--- TransitionTest.cpp  29 Dec 2006 10:45:48 -0000      1.13.2.2
+++ TransitionTest.cpp  8 Feb 2007 22:06:38 -0000       1.13.2.3
@@ -1,5 +1,5 @@
 //////////////////////////////////////////////////////////////////////////////
-// Copyright 2004-2006 Andreas Huber Doenni
+// Copyright 2004-2007 Andreas Huber Doenni
 // Distributed under the Boost Software License, Version 1.0. (See accompany-
 // ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 //////////////////////////////////////////////////////////////////////////////
@@ -84,19 +84,19 @@
 template< class State >
 void Entry( ActionDescriptionSequence & sequence )
 {
-  sequence.push_back( EntryDescription< State > );
+  sequence.push_back( &::EntryDescription< State > );
 }
 
 template< class State >
 void ExitFn( ActionDescriptionSequence & sequence )
 {
-  sequence.push_back( ExitFnDescription< State > );
+  sequence.push_back( &::ExitFnDescription< State > );
 }
 
 template< class State >
 void Dtor( ActionDescriptionSequence & sequence )
 {
-  sequence.push_back( DtorDescription< State > );
+  sequence.push_back( &::DtorDescription< State > );
 }
 
 template< class State >
@@ -109,13 +109,13 @@
 template< class Context, class Event >
 void Trans( ActionDescriptionSequence & sequence )
 {
-  sequence.push_back( TransDescription< Context, Event > );
+  sequence.push_back( &::TransDescription< Context, Event > );
 }
 
 template< ActionPtr pAction >
 void Throw( ActionDescriptionSequence & sequence )
 {
-  sequence.push_back( ThrowDescription< pAction > );
+  sequence.push_back( &::ThrowDescription< pAction > );
 }
 
 const int arrayLength = 30;


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to