我使用VS2008设计MFC应用程序。它在调试模式下非常好。但是当我切换到Release模式时,它会抛出错误
error C2511: 'CCESDoc *CCESView::GetDocument(void) const' : overloaded member function not found in 'CCESView'
CCESView.h文件的代码定义
#ifndef _DEBUG
inline CCESDoc* CCESView::GetDocument() const
{
return reinterpret_cast<CCESDoc*>(m_pDocument);
}
#endif
当我删除这个定义时,它在编译时不会抛出错误,但是当我运行时,它有其他错误R6034:应用程序尝试加载C运行时库而不使用清单