Crate-training Tiamat, un-calling Cthulhu: Taming the UB monsters in C++

8 points by jmillikin


snej

I admire Sutter’s work, and he’s written some great articles, but this one kind of smells like a puff-piece. Getting rid of UB is doing the Lord’s work, but it’s not the same as memory safety.

During constexpr evaluation, the language mandates well-defined behavior — no wild pointers, no uninitialized reads, no surprises. If an operation might trigger undefined behavior, the compiler simply rejects the constexpr evaluation at compile time.

So does this mean a function marked constexpr cannot cause UB because the compiler will always flag it as an error? Or does it only detect/reject UB during compile-time interpretation when the flow of control takes it to that point? If the latter, constexpr is considerably less useful as a safety mechanism because how much of that code actually runs at compile time?