In C++, what happens when a function that is supposed to return an object ends without a return statement? What gets returned?
e.g.
std::string func() {}
What gets returned?
We don't know. According to the standard, the behavior is undefined.
§6.6.3/2 The return statement [stmt.return]:
(emphasis mine)
Flowing off the end of a constructor, a destructor, or a function with a cv void return type is equivalent to a return with no operand. Otherwise, flowing off the end of a function other than main (basic.start.main) results in undefined behavior.
void
return
main
In fact most compilers would give a warning for it, like Clang:
warning: control reaches end of non-void function [-Wreturn-type]
2.1m questions
2.1m answers
60 comments
57.0k users