Skip to content

Instantly share code, notes, and snippets.

@thiagomg
Created February 4, 2016 22:20
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 thiagomg/97aceb0ab8572a1bb04f to your computer and use it in GitHub Desktop.
Save thiagomg/97aceb0ab8572a1bb04f to your computer and use it in GitHub Desktop.
Leitura de configuração em C++
auto get(const Key &key) const -> const Value & {
auto it = _items.find(key);
if( it == _items.end() )
return _empty;
return it->second;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment