Skip to content

Instantly share code, notes, and snippets.

@lucasmeijer
Last active November 12, 2015 15:19
Show Gist options
  • Save lucasmeijer/809bafe065986366ba5e to your computer and use it in GitHub Desktop.
Save lucasmeijer/809bafe065986366ba5e to your computer and use it in GitHub Desktop.
struct A
{
static void Foo();
};
void func()
{
A a;
a.Foo();
//MSVC 2010 & 2015 throw this:
//warning C4101: 'a': unreferenced local variable
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment