0

我在以下测试代码段上进行了测试gcc 4.7.2

#include <iostream>
#include <type_traits>

#ifdef REMOVE_CONSTEXPR_NOEXCEPT
# define CONSTEXPR_NOEXCEPT
#else
# define CONSTEXPR_NOEXCEPT noexcept
#endif

class ConstExpr {
public:
  // Some constructors
private:
  // Some member data
public:
  // Cannot split the declaration if noexcept
  static constexpr unsigned int Int(unsigned int i) CONSTEXPR_NOEXCEPT
#ifndef SPLIT_CONSTEXPR_DECLARATION
  {
    return i;
  }
#else
  ;
#endif
};

#ifdef SPLIT_CONSTEXPR_DECLARATION
constexpr unsigned int ConstExpr::Int(unsigned int i) CONSTEXPR_NOEXCEPT {
  return i;
}
#endif

class NoConstExpr {
public:
  // Some constructors
private:
  // Some member data
public:
  // Cannot split the declaration if noexcept
  static unsigned int Int(unsigned int i) noexcept;
};

// It's OK on normal functions
inline unsigned int NoConstExpr::Int(unsigned int i) noexcept {
  return i;
}

int main()
{
  std::cout << "ConstExpr: " << std::integral_constant<unsigned int,
    ConstExpr::Int(5)>::value << std::endl;
  std::cout << "NoConstExpr: " << NoConstExpr::Int(5) << std::endl;
}

我得到以下编译输出:

[matt test] g++ -std=c++11 main.cpp && ./a.out
ConstExpr: 5
NoConstExpr: 5
[matt test] g++ -std=c++11 main.cpp -DSPLIT_CONSTEXPR_DECLARATION && ./a.out
main.cpp:28:55: error: declaration of ‘static constexpr unsigned int ConstExpr::Int(unsigned int)’ has a different exception specifier
main.cpp:17:33: error: from previous declaration ‘static constexpr unsigned int ConstExpr::Int(unsigned int) noexcept (true)’
[matt test] g++ -std=c++11 main.cpp -DSPLIT_CONSTEXPR_DECLARATION -DREMOVE_CONSTEXPR_NOEXCEPT && ./a.out
ConstExpr: 5
NoConstExpr: 5

所以我的问题是:它是 C++11 规范的一部分,能够拆分constexpr函数的定义和声明,还是这是一个gcc错误?

4

1 回答 1

0

看起来gcc错误解决了这个问题4.8.1

于 2014-07-09T14:02:54.793 回答