I have converted VC6 project to .Net 2005 VC++.
It gives me warning :
warning C4717: 'CExcel::PrintL ine' : recursive on all control paths, function will cause runtime stack overflow
void CExcel::PrintLi ne( LPCSTR pchText )
{
PrintLine( _bstr_t( pchText ) );
}
void CExcel::Print( LPCSTR pchText )
{
Print( _bstr_t( pchText ) );
}
Above functions are working fine VC 6.0.
Can any one please help me resolve this issue?
It gives me warning :
warning C4717: 'CExcel::PrintL ine' : recursive on all control paths, function will cause runtime stack overflow
void CExcel::PrintLi ne( LPCSTR pchText )
{
PrintLine( _bstr_t( pchText ) );
}
void CExcel::Print( LPCSTR pchText )
{
Print( _bstr_t( pchText ) );
}
Above functions are working fine VC 6.0.
Can any one please help me resolve this issue?
Comment