C2511:找不到重载的成员函数(仅在发布模式下)

时间:2014-04-08 07:35:38

标签: c++ mfc

我使用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运行时库而不使用清单

0 个答案:

没有答案