Unverified Commit aad7e0a9 authored by Timm Baeder's avatar Timm Baeder Committed by GitHub
Browse files

[clang][Diagnostics] Add bitfield source range to zero width diags (#68312)

Before:
```
array.cpp:157:8: error: named bit-field 'a' has zero width
  157 |   char a : 12 - 12;
      |        ^
1 error generated.
```

After:

```
array.cpp:157:8: error: named bit-field 'a' has zero width
  157 |   char a : 12 - 12;
      |        ^   ~~~~~~~
1 error generated.
```
parent 8fb83bf5
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment