MozillaFirefox/mozilla-partial-revert-1768632.patch
Wolfgang Rosenauer 41c367e33f - Add firefox-3781e3117706.patch to fix boo#1227856 aka bmo#1905018
where an incompatible pointer assignment is not accepted in C by
  GCC 14.

If the request is OK, please forward it to Factory soon-ish so that we
can switch the default compiler.  Thanks!.

OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=1164
2024-07-19 09:54:37 +00:00

14 lines
368 B
Diff

Index: firefox-102.4.0/mfbt/EnumSet.h
===================================================================
--- firefox-102.4.0.orig/mfbt/EnumSet.h
+++ firefox-102.4.0/mfbt/EnumSet.h
@@ -326,7 +326,7 @@ class EnumSet {
}
}
- static constexpr size_t kMaxBits = MaxBits();
+ static constexpr size_t kMaxBits = EnumSet().MaxBits();
Serialized mBitField;