https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 826f2ac0acde5b0eac0b8886d27db761bbb3f623 authored by ffxbld on 15 June 2011, 21:16:26 UTC
Added tag FIREFOX_5_0_BUILD1 for changeset 7b56ff900c2a. CLOSED TREE a=release
Tip revision: 826f2ac
TestStaticInitConstructor.cpp
struct Blah {
  public:
    Blah() { }
   ~Blah() { } // raises call to __cxa_atexit
};

Blah b;
back to top