是否可以为clang或gcc配置constexpr递归限制?

时间:2013-06-01 19:33:50

标签: gcc clang constexpr compiler-options

可以通过clang或gcc的命令行选项配置constexpr编译时递归限制吗?怎么样?

1 个答案:

答案 0 :(得分:4)

当我使用gcc超出限制时,我收到以下错误消息:

error: constexpr evaluation depth exceeds maximum of 512 (use -fconstexpr-depth= to increase the maximum)

根据documentation,clang理解相同的选项。