Changes to VT:
- vtunify[-mpi]: - fixed compile error with Clang++ v2.9 and v3.0 This commit was SVN r25962.
Этот коммит содержится в:
родитель
3c79aa1eab
Коммит
c888ceaa55
@ -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
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user