当前位置: 技术问答>linux和unix
被逼无奈,请高手指点这个错误[ ISO C++ forbids declaration of ‘CQueue’ with no type]
来源: 互联网 发布时间:2016-01-09
本文导语: 被逼无奈,请高手指点这个错误[ ISO C++ forbids declaration of ‘CQueue’ with no type] 我的.h文件里面有一个: …… CQueue * m_pParent; …… 提示错误就是:NShortPath.h:47: error: ISO C++ forbids declaration of ‘CQueue’ w...
被逼无奈,请高手指点这个错误[ ISO C++ forbids declaration of ‘CQueue’ with no type]
我的.h文件里面有一个:
……
CQueue * m_pParent;
……
提示错误就是:NShortPath.h:47: error: ISO C++ forbids declaration of ‘CQueue’ with no type
我的.h文件里面有一个:
……
CQueue * m_pParent;
……
提示错误就是:NShortPath.h:47: error: ISO C++ forbids declaration of ‘CQueue’ with no type
|
呵呵,我猜是你的cqueue定义的时候少了分号
class CQueue
{
};
class CQueue
{
};
|
CQueue应该是个模板,你少了模板参数。
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。