Skip to content

Instantly share code, notes, and snippets.

@jld
Created April 27, 2016 17:47
Show Gist options
  • Save jld/c96468b6b9e9b29430e5b010d3d01182 to your computer and use it in GitHub Desktop.
Save jld/c96468b6b9e9b29430e5b010d3d01182 to your computer and use it in GitHub Desktop.
extern __attribute__((weak)) int gBaz;
class Foo {
__attribute__((weak)) static int sBar;
public:
int thing(void);
};
int Foo::thing(void) { return sBar + gBaz; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment