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