How deeply nested can constexpr expressions be?

98 Views Asked by At

Considering a program is comprised entirely of constexpr functions (which are all capable of being computed at compile-time), is there a limit to how "levels" deep can constexpr functions be called? Could a whole program be computed at compile-time, given the right requisites, by using only constexpr functions?

1

There are 1 best solutions below

2
On BEST ANSWER

The standard recommends in Annex B a limit that is at least 512, but a conforming implementation need not comply with the recommendation.

— Recursive constexpr function invocations [512].