Skip to content

Instantly share code, notes, and snippets.

@aabdelfattah
Created June 4, 2019 12:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aabdelfattah/cfedff80a2ad96478a293e914b18830d to your computer and use it in GitHub Desktop.
Save aabdelfattah/cfedff80a2ad96478a293e914b18830d to your computer and use it in GitHub Desktop.
returning rvalue
string getName() {
string str = "medium";
return s;
}
// getName() returns an rvalue
string&& name = getName();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment