1
1
- vtunify[-mpi]:
		- fixed compile error with Clang++ v2.9 and v3.0

This commit was SVN r25962.
Этот коммит содержится в:
Matthias Jurenz 2012-02-20 09:36:09 +00:00
родитель 3c79aa1eab
Коммит c888ceaa55
2 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -89,6 +89,14 @@ struct DefRec_BaseS
VT_MPI_INT & bufferPos );
#endif // VT_MPI
// NOTE: this operator is actually not used but necessary to work around
// a build error with the Clang++ compiler
// (see http://www.open-mpi.org/community/lists/devel/2012/02/10419.php)
bool operator<( const DefRec_BaseS & a ) const
{
return dtype < a.dtype;
}
DefRecTypeT dtype;
uint32_t loccpuid;
uint32_t deftoken;

Просмотреть файл

@ -60,7 +60,7 @@ TokenFactoryScopeC<T>::create( const void * localDef, uint32_t globalToken )
else
global_def.deftoken = globalToken;
m_globDefs->insert( global_def ).first;
m_globDefs->insert( global_def );
}
// set token translation for process, if necessary