Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Question about dangling references caused by returning const& parameter as const& #2260

Open
denzor200 opened this issue Feb 28, 2025 · 1 comment

Comments

@denzor200
Copy link

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?

@bgloyer
Copy link
Contributor

bgloyer commented Mar 5, 2025

Probably the closest is:

F.43: Never (directly or indirectly) return a pointer or a reference to a local object

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants