0

我最近更新到 Visual Studio 2012,但遇到了一些异常规范问题。我不断收到具有以下形式的系统文件的错误

<some type> function(<some input>) _NOEXCEPT    
{
  <some code>
}

在哪里

 #define _NOEXCEPT  throw()

我不太明白为什么会出现错误,因为宏是定义的,并且用途是由Visual Studio Exception Handling定义的。错误类似于:

C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include\list(1119): error C2059: syntax error : '{'
C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include\list(1119): error C2334: unexpected token(s) preceding '{'; skipping apparent function body

上面的“列表”文件的第 1118-1121 行是:

const_iterator begin() const _NOEXCEPT
    {   // return iterator for beginning of nonmutable sequence
    return (const_iterator(this->_Nextnode(this->_Myhead), this));
    }

错误来自位于上述路径中的“list”和“xtree”。我已经尝试更改上面链接中指定的“\EH”标志,但这没有帮助。

关于可能导致这种情况的任何想法?

编辑:添加预处理器文件摘录。

const_iterator begin() const {printf("ERROR: %s\n     in file %s at line %d\n", ,"C:\\Program Files (x86)\\Microsoft Visual Studio 11.0\\VC\\include\\list",1118); throw(1);}
    {   
    return (const_iterator(this->_Nextnode(this->_Myhead), this));
    }

不知道我应该从这个文件中得到什么,但这里是示例代码。

4

1 回答 1

0

编辑

事实证明,有一个带有宏的全局标题

#define throw(message) {printf("ERROR: %s\n in file %s at line %d\n", message,__FILE__,__LINE__); throw(1);}

这导致了所有问题。取消定义宏会使事情顺利进行。


我放弃了试图解决这个问题......作为一种解决方法,我重新定义了 _NOEXCEPT 宏以不使用 throw,即

#define _NOEXCEPT  

在导致问题的头文件中。

我不认为这将是一个主要问题,因为所有编译器都会忽略异常规范并且在 c++11 中已弃用

于 2013-09-13T16:25:58.510 回答