compilfix: correct template name for dispatcher's indexes

This commit is contained in:
nojhan 2011-11-03 11:13:32 +01:00
commit 03b69f1819

View file

@ -71,7 +71,7 @@ public:
{}
//! Constructor with a single index set and repairer operator
edoRepairerDispatcher( IndexContainer idx, edoRepairer<EOT>* op ) :
edoRepairerDispatcher( ICT idx, edoRepairer<EOT>* op ) :
std::vector<
std::pair< std::vector< unsigned int >, edoRepairer< EOT >* >
>()
@ -80,7 +80,7 @@ public:
}
//! Add more indexes set and their corresponding repairer operator address to the list
void add( IndexContainer idx, edoRepairer<EOT>* op )
void add( ICT idx, edoRepairer<EOT>* op )
{
assert( idx.size() > 0 );
assert( op != NULL );