Keith Smiley cfcc50a732
[bazel] Add -Wno-vla-cxx-extension to macOS lldb srcs (#185945)
```
lldb/tools/debugserver/source/MacOSX/MachVMMemory.cpp:88:20: warning: variable length arrays in C++ are a Clang extension [-Wvla-cxx-extension]
   88 |   int dispositions[dispositions_size];
      |                    ^~~~~~~~~~~~~~~~~
```

This code contains objc++ which can only be compiled with clang anyways.
2026-03-11 11:59:55 -07:00
..