Hacker News new | ask | show | jobs
by mike_hock 3095 days ago
constexpr means you CAN use the function in a constant expression

inline means you CAN define a function in multiple translation units without violating ODR

no guarantees in the other direction

1 comments

Gotcha, I think I understood it.