Does constexpr imply inline?
My question is: does the
constexprspecifier imply theinlinespecifier in the sense that if a non-constant argument is passed to aconstexprfunction, the compiler will try to inline the function as if theinlinespecifier was put in its declaration ?Does the C++11 standard guarantee that ?

Add a Comment
Comments are closed.