summaryrefslogtreecommitdiffstats
path: root/memory/mozalloc
Commit message (Collapse)AuthorAgeLines
* Issue #1053 - Remove android support from memoryMatt A. Tobin2020-02-23-47/+1
|
* MoonchildProductions#1251 - Part 13: Redefining abort in C++ requires extern "C"athenian2002019-10-21-1/+1
| | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1375467 I would ifdef this, but it's been in Firefox since version of 56, and Petr Sumbara's explanation as to why it's wrong in the first place is so detailed that it's pretty obvious the code wasn't technically doing things properly to begin with. Basically, they tried to redefine a system function after including the header file that declares it, and it caused problems on Solaris because libc functions are imported into the C++ std namespace in a different way that also complies with standards. So the existing implementation is technically bad code on all platforms, the Solaris implementation just uncovered the lack of standards compliance in the Mozilla code.
* Use |noexcept| instead of an exception-specification in mozalloc.htrav902018-03-04-0/+6
| | | | We are using |throw(std::bad_alloc)|, but dynamic exception specifications have been deprecated in C++11. The C++11 equivalent is |noexcept(false)|. This causes build warning spam when using newer compilers such as GCC 7.x.
* Add m-esr52 at 52.6.0Matt A. Tobin2018-02-02-0/+1215