Reddit discussion: https://www.reddit.com/r/cpp/comments/5zzurr/c_value_categor...
I'd love it if someone could shed some light on my question here: https://www.reddit.com/r/cpp/comments/5zzurr/c_value_categor... int const &f(int const &a) { return a; } int r = f(3); Is the value of r implementation-defined according to the standard?
I think this is similar to the std::max/std::min stuff