You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In C++ the functionality of references gives us one well-known way to shoot yourself in the foot, whereas using the pointers such foot-shooting was impossible.
const int& identity(const int& val) {
return val;
}
void sample() {
const int& val = identity(int(10)); // UB - val is a dangling reference
const int val2 = identity(int(10)); // OK
const int& val3 = identity(val2); // OK
}
Will guidelines protect us from this kind of lifetime-related problem?
The text was updated successfully, but these errors were encountered:
In C++ the functionality of references gives us one well-known way to shoot yourself in the foot, whereas using the pointers such foot-shooting was impossible.
Will guidelines protect us from this kind of lifetime-related problem?
The text was updated successfully, but these errors were encountered: