Skip to content

Instantly share code, notes, and snippets.

@AlexsJones
Last active August 29, 2015 13:56
Show Gist options
  • Save AlexsJones/9069402 to your computer and use it in GitHub Desktop.
Save AlexsJones/9069402 to your computer and use it in GitHub Desktop.
uninitialized members
class Bar;
class Foo
{
public:
Foo()
{
};
Bar *bar;
InitBar()
{
void *p = sizeof(Bar->getSize());
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment