This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Does TI C6000 CGT support C++ dynamic casting?

Hi,

    Do you know whether TI C6000 CGT support C++ dynamic casting. Customer's code is like below:

class CUlPsCompMain : public IUlPsCompConf

{

……

}

 

CUlPsCompMain* pUlPsCompMain = dynamic_cast<CUlPsCompMain*>(m_ulPsCompConf);

if (GLO_NULL != pUlPsCompMain)

{

    pUlPsCompMain->setTraceComponent(&m_UlPsTraceComponent);

}

    It can be built in G++, but TI C6000 CGT 7.3 returns '

"dynamic_cast" is reserved for future use as a keyword

identifier "dynamic_cast" is undefined.'

Thanks,
Adam