ClangPlugins: Convert all warnings to errors

Now that the lambda capture plugin isn't full of false-positives, we can
make the jump and start halting builds for these errors. It also allows
these plugins to be useful in CI.
This commit is contained in:
Matthew Olsson 2024-05-18 07:08:23 -07:00 committed by Andrew Kaster
commit 6a4938a524
Notes: sideshowbarker 2024-07-17 07:20:49 +09:00
9 changed files with 24 additions and 24 deletions

View file

@ -8,7 +8,7 @@
#include <LibJS/Runtime/Object.h>
// expected-warning@+1 {{JS::Cell-inheriting class TestClass contains a GC-allocated member 'm_cell' but has no visit_edges method}}
// expected-error@+1 {{JS::Cell-inheriting class TestClass contains a GC-allocated member 'm_cell' but has no visit_edges method}}
class TestClass : public JS::Object {
JS_OBJECT(TestClass, JS::Object);