https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 47f075c16bc317e93f585eeff81b8ccea44cf161 authored by B2G Bumper Bot on 11 December 2015, 19:33:57 UTC
Bumping manifests a=b2g-bump
Tip revision: 47f075c
TestStaticInitConstructor.cpp
struct Blah {
  public:
    Blah() { }
   ~Blah() { } // raises call to __cxa_atexit
};

Blah b;
back to top