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

Fix return arguments in functions to use rvalue references. #41

Open
bryan-lunt opened this issue Nov 1, 2017 · 1 comment
Open

Fix return arguments in functions to use rvalue references. #41

bryan-lunt opened this issue Nov 1, 2017 · 1 comment
Labels

Comments

@bryan-lunt
Copy link
Contributor

See the article by Stroustrup : http://www.artima.com/cppsource/rvalue.html

Basically, if you are returning into a reference provided as an argument, you should use && references.

ex:
void myfunction(int&& return_into){...}

rather than void myfunction(int& return_into){...}

It will improve some compilation properties.

@bryan-lunt
Copy link
Contributor Author

well.. maybe not, it seems to be a C++11 extension.

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

No branches or pull requests

1 participant