home  

indent_namespace_inner_only

Properties

  Category: Indenting options
      Type: boolean [false, true]
   Default: false

Description

Whether to indent only in inner namespaces (nested in other namespaces).
Requires indent_namespace=true.

Examples

raw CPP code indent_namespace_inner_only=false indent_namespace_inner_only=true
using namespace std::string_literals; namespace A{int i;}; namespace B{int i;int j;namespace C{namespace D{int k;}}} using namespace std::string_literals; namespace A {int i;}; namespace B {int i; int j; namespace C {namespace D {int k;}}} using namespace std::string_literals; namespace A {int i;}; namespace B {int i; int j; namespace C {namespace D {int k;}}}
 

Not the best code for this option? See how to improve the .uds file used to generate these examples.