Skip to content

Instantly share code, notes, and snippets.

@VitaminaCPP
Created September 22, 2014 22:15
Show Gist options
  • Save VitaminaCPP/b21b9462814d3c59724c to your computer and use it in GitHub Desktop.
Save VitaminaCPP/b21b9462814d3c59724c to your computer and use it in GitHub Desktop.
const std::string HolaMundo("Hola Mundo!");
// auto se deduce como decltype del retorno
// que resulta ser const std::string
decltype(auto) copia_constante()
{
return HolaMundo;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment