diff options
author | Andrey Ali Khan Bolshakov <bolsh.andrey@yandex.ru> | 2025-10-05 19:43:53 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-10-06 00:43:53 +0800 |
commit | 2121bda3424d7d8a18b4cd6718514be9bef5932e (patch) | |
tree | 460d8f2cb8d33640db385929a56427d32aa338b3 /lldb/test/API/functionalities/lazy-loading/main.cpp | |
parent | e543ca685791b7424fb99187507fd555ff7832d4 (diff) | |
download | llvm-2121bda3424d7d8a18b4cd6718514be9bef5932e.zip llvm-2121bda3424d7d8a18b4cd6718514be9bef5932e.tar.gz llvm-2121bda3424d7d8a18b4cd6718514be9bef5932e.tar.bz2 |
[clang][AST] Don't print inherited default template args (#161953)
Prior to this change, for the code like this:
```cpp
template <int, int = 0>
class Tpl;
template <int = 0, int>
class Tpl;
```
pretty-printing produced an uncompilable code:
```cpp
template <int, int = 0> class Tpl;
template <int = 0, int = 0> class Tpl;
```
Diffstat (limited to 'lldb/test/API/functionalities/lazy-loading/main.cpp')
0 files changed, 0 insertions, 0 deletions