summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/an/angle/fix-uninitialized-const-pointer-error-001.patch
blob: d0fe22455737afccd2ab17dacd9f86e2f6880a06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
index 0c04c9036..1f32ec562 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -1992,6 +1992,11 @@ config("tot_warnings") {
       "-Wno-character-conversion",
     ]
   }
+
+  cflags += [
+    # TODO(crbug.com/432275627): Fix and re-enable.
+    "-Wno-uninitialized-const-pointer"
+  ]
 }
 
 # default_warnings ------------------------------------------------------------