https://github.com/mozilla/gecko-dev
Raw File
Tip revision: b7e27340b23828cb743b5c51f4ecbd17a7e97f66 authored by Vincent Liu on 24 May 2013, 02:38:31 UTC
Bug 864588 - [B2G] [Leo] [Internet Sharing] USB tethering turns off almost immediately after being turned on. r=vchang, a=leo+
Tip revision: b7e2734
TestStaticInitConstructor.cpp
struct Blah {
  public:
    Blah() { }
   ~Blah() { } // raises call to __cxa_atexit
};

Blah b;
back to top