diff options
author | Martin Stransky <stransky@redhat.com> | 2018-03-06 15:13:10 +0100 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2018-03-06 15:13:10 +0100 |
commit | 442e558e0d80f3320379593b554af575b684e159 (patch) | |
tree | 1d3d78c1427a7ab9b1daf8969a80f9e8e4577005 /mozilla-1416170.patch | |
parent | Merge branch 'master' into f26 (diff) | |
parent | Fixed sqlite version (diff) | |
download | librewolf-fedora-ff-442e558e0d80f3320379593b554af575b684e159.tar.gz librewolf-fedora-ff-442e558e0d80f3320379593b554af575b684e159.tar.bz2 librewolf-fedora-ff-442e558e0d80f3320379593b554af575b684e159.zip |
Merge branch 'master' into f26
Diffstat (limited to 'mozilla-1416170.patch')
-rw-r--r-- | mozilla-1416170.patch | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/mozilla-1416170.patch b/mozilla-1416170.patch deleted file mode 100644 index 6f86f8e..0000000 --- a/mozilla-1416170.patch +++ /dev/null @@ -1,50 +0,0 @@ -diff --git a/memory/build/Utils.h b/memory/build/Utils.h ---- a/memory/build/Utils.h -+++ b/memory/build/Utils.h -@@ -67,19 +67,19 @@ constexpr size_t operator"" _MiB(unsigne - return size_t(aNum) * 1024_KiB; - } - - constexpr size_t operator"" _MiB(long double aNum) - { - return size_t(aNum * 1024_KiB); - } - --constexpr long double operator""_percent(long double aPercent) -+constexpr double operator""_percent(long double aPercent) - { -- return aPercent / 100; -+ return double(aPercent) / 100; - } - - // Helper for (fast) comparison of fractions without involving divisions or - // floats. - class Fraction - { - public: - explicit constexpr Fraction(size_t aNumerator, size_t aDenominator) -diff --git a/memory/build/mozjemalloc.cpp b/memory/build/mozjemalloc.cpp ---- a/memory/build/mozjemalloc.cpp -+++ b/memory/build/mozjemalloc.cpp -@@ -908,18 +908,18 @@ struct arena_bin_t - - // Offset of first region in a run for this bin's size class. - uint32_t mRunFirstRegionOffset; - - // Current number of runs in this bin, full or otherwise. - unsigned long mNumRuns; - - // Amount of overhead runs are allowed to have. -- static constexpr long double kRunOverhead = 1.6_percent; -- static constexpr long double kRunRelaxedOverhead = 2.4_percent; -+ static constexpr double kRunOverhead = 1.6_percent; -+ static constexpr double kRunRelaxedOverhead = 2.4_percent; - - // Initialize a bin for the given size class. - // The generated run sizes, for a page size of 4 KiB, are: - // size|run size|run size|run size|run - // class|size class|size class|size class|size - // 4 4 KiB 8 4 KiB 16 4 KiB 32 4 KiB - // 48 4 KiB 64 4 KiB 80 4 KiB 96 4 KiB - // 112 4 KiB 128 8 KiB 144 4 KiB 160 8 KiB - |