尝试使用 CodeBlocks (16.01) 和 VS2013编译 TinyXml++教程,我在以下行中遇到相同的错误:
ticpp::Element* pElem = doc.FirstChildElement()->NextSibling();
代码块错误:
从 'ticpp::Node*' 到 'ticpp::Element*' 的无效转换 [-fpermissive]
VS2013 错误:
无法从 'ticpp::Node *' 转换为 'ticpp::Element *'
任何想法?