Does constexpr imply inline?
My question is: does the
constexpr
specifier imply theinline
specifier in the sense that if a non-constant argument is passed to aconstexpr
function, the compiler will try to inline the function as if theinline
specifier was put in its declaration ?Does the C++11 standard guarantee that ?
Add a Comment
Comments are closed.