Skip to content

Instantly share code, notes, and snippets.

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