diff options
author | Marek Kurdej <marek.kurdej+llvm.org@gmail.com> | 2021-12-20 09:12:35 +0100 |
---|---|---|
committer | Marek Kurdej <marek.kurdej+llvm.org@gmail.com> | 2021-12-20 09:13:32 +0100 |
commit | 960712ccc7103ded3d95e10c61516126836a1eba (patch) | |
tree | 733abd560940f933b036496589287364cab2fee1 /lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp | |
parent | 93d79cac2ede436e1e3e91b5aff702914cdfbca7 (diff) | |
download | llvm-960712ccc7103ded3d95e10c61516126836a1eba.zip llvm-960712ccc7103ded3d95e10c61516126836a1eba.tar.gz llvm-960712ccc7103ded3d95e10c61516126836a1eba.tar.bz2 |
[clang-format] Fix wrong indentation of namespace identifiers after a concept declaration.
Before this patch, the code:
```
template <class T>
concept a_concept = X<>;
namespace B {
struct b_struct {};
} // namespace B
```
with config:
```
NamespaceIndentation: None
```
was wrongly indented inside namespace B, giving:
```
template <class T>
concept a_concept = X<>;
namespace B {
struct b_struct {};
} // namespace B
```
Fixes https://github.com/llvm/llvm-project/issues/50645
Reviewed By: MyDeveloperDay, owenpan
Differential Revision: https://reviews.llvm.org/D116008
Diffstat (limited to 'lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp')
0 files changed, 0 insertions, 0 deletions