Skip to content

Instantly share code, notes, and snippets.

@bolry
Created January 8, 2017 22:17
Show Gist options
  • Save bolry/29c0c5c84190b1187d1129c449110f8a to your computer and use it in GitHub Desktop.
Save bolry/29c0c5c84190b1187d1129c449110f8a to your computer and use it in GitHub Desktop.
Meyers singelton, does destruction!
widget& instance() {
static widget w;
return w;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment