This should fix a couple of Intel9.1 failures
[SVN r36901]
This commit is contained in:
parent
7341e31e9d
commit
aa84b8d7f3
@ -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 @@ std::string ThrowDescription()
|
||||
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 @@ void Exit( ActionDescriptionSequence & sequence )
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user