diff options
| author | Marco Maia <marcogmaia@gmail.com> | 2025-11-03 15:15:32 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-03 13:15:32 -0500 |
| commit | 84a9ed25e816a51df765770e8867bccbde8da8e9 (patch) | |
| tree | 0fa3307d1f3cfaf36e61dfc76667def72405f9ec /llvm/tools/llvm-diff/lib/DifferenceEngine.h | |
| parent | d65e712e30a8998c897a6454e4eaea4f974bf765 (diff) | |
| download | llvm-84a9ed25e816a51df765770e8867bccbde8da8e9.zip llvm-84a9ed25e816a51df765770e8867bccbde8da8e9.tar.gz llvm-84a9ed25e816a51df765770e8867bccbde8da8e9.tar.bz2 | |
[clangd] Preserve qualified names in "override pure virtual methods" tweak (#163726)
Prevents the tweak from splitting **qualified names** (e.g.,
`foo::Type`) by incorrectly inserting a space around the scope
resolution (`::`).
**Before:**
```cpp
// input:
virtual foo::Type::func() = 0
// output:
foo :: Type :: func()
```
**After:**
```cpp
// input:
virtual foo::Type::func() = 0
// output:
foo::Type::func()
```
Diffstat (limited to 'llvm/tools/llvm-diff/lib/DifferenceEngine.h')
0 files changed, 0 insertions, 0 deletions
