Update of /cvsroot/boost/boost/libs/statechart/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24218/libs/statechart/test
Modified Files:
TransitionTest.cpp
Log Message:
This should fix a couple of Intel9.1 failures
Index: TransitionTest.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/statechart/test/TransitionTest.cpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- TransitionTest.cpp 29 Dec 2006 10:29:11 -0000 1.15
+++ TransitionTest.cpp 6 Feb 2007 18:29:13 -0000 1.16
@@ -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