|
楼主 |
发表于 2008-12-26 14:28:19
|
显示全部楼层
回复: PR 248562 loading program in debug build that has FCF profile commands
V43B\DIMENS\SIMULTANEOUS_EVALUATION.CPP
if (numFCFs > 0)
{
for( long ii = 0; ii < numFCFs; ii++ )
{
if( (GetPRGSchema(m_pPartProgram) < 3273) || (GetPRGSchema(m_pPartProgram) >= 3500 && GetPRGSchema(m_pPartProgram) < 3607) ) // PR248562
{
SERIALIZESIMPLEREAD(archive,unid);
if (unid)
FCFlist.Add(search_UID(m_pPartProgram,unid));
}
else // PR248562
{
CPCDcommand * pFCF = NULL;
SerializeCmdPtrAsUID(m_pPartProgram,archive,pFCF, this);
if( pFCF )
FCFlist.Add(pFCF);
}
} |
|