sp_after_type
Category: Spacing options Type: multiple (ignore add remove force) Default: force
Add or remove space between type and word. In cases where total removal of whitespace would be a syntax error, a value of 'remove' is treated the same as 'force'. This also affects some other instances of space following a type that are not covered by other options; for example, between the return type and parenthesis of a function type template argument, between the type and parenthesis of an array parameter, or between 'decltype(...)' and the following word. Default: force
inti; class/enum/struct/union X{
raw CPP code | sp_after_type=ignore | sp_after_type=add | sp_after_type=remove | sp_after_type=force | space sp_after_type=force |
---|---|---|---|---|---|
int i; vector v; int(*f)(int*); int (*f)(int*); enum Color{red,green,blue}; enum Color {red,green,blue}; enum struct Color{red,green,blue}; enum struct Color {red,green,blue}; enum class Color{red,green,blue}; enum class Color {red,green,blue}; enum struct Color:int{red,green,blue}; enum struct Color:int {red,green,blue}; class C{int a;int b;}; class C {int a;int b;}; struct S{int a;int b;}; struct S {int a;int b;}; union U{int a;int b;}; union U {int a;int b;}; // but no effect on that int*p; int * p; int&r; int & r; int f(); char * f(); enum{red,green,blue}; enum {red,green,blue}; | int i; vector v; int(*f)(int*); int (*f)(int*); enum Color{red,green,blue}; enum Color {red,green,blue}; enum struct Color{red,green,blue}; enum struct Color {red,green,blue}; enum class Color{red,green,blue}; enum class Color {red,green,blue}; enum struct Color:int{red,green,blue}; enum struct Color:int {red,green,blue}; class C{int a; int b;}; class C {int a; int b;}; struct S{int a; int b;}; struct S {int a; int b;}; union U{int a; int b;}; union U {int a; int b;}; // but no effect on that int*p; int * p; int&r; int & r; int f(); char * f(); enum {red,green,blue}; enum {red,green,blue}; | int i; vector v; int (*f)(int*); int (*f)(int*); enum Color {red,green,blue}; enum Color {red,green,blue}; enum struct Color {red,green,blue}; enum struct Color {red,green,blue}; enum class Color {red,green,blue}; enum class Color {red,green,blue}; enum struct Color:int {red,green,blue}; enum struct Color:int {red,green,blue}; class C {int a; int b;}; class C {int a; int b;}; struct S {int a; int b;}; struct S {int a; int b;}; union U {int a; int b;}; union U {int a; int b;}; // but no effect on that int*p; int * p; int&r; int & r; int f(); char * f(); enum {red,green,blue}; enum {red,green,blue}; | int i; vector v; int(*f)(int*); int(*f)(int*); enum Color{red,green,blue}; enum Color{red,green,blue}; enum struct Color{red,green,blue}; enum struct Color{red,green,blue}; enum class Color{red,green,blue}; enum class Color{red,green,blue}; enum struct Color:int{red,green,blue}; enum struct Color:int{red,green,blue}; class C{int a; int b;}; class C{int a; int b;}; struct S{int a; int b;}; struct S{int a; int b;}; union U{int a; int b;}; union U{int a; int b;}; // but no effect on that int*p; int * p; int&r; int & r; int f(); char * f(); enum {red,green,blue}; enum {red,green,blue}; | int i; vector v; int (*f)(int*); int (*f)(int*); enum Color {red,green,blue}; enum Color {red,green,blue}; enum struct Color {red,green,blue}; enum struct Color {red,green,blue}; enum class Color {red,green,blue}; enum class Color {red,green,blue}; enum struct Color:int {red,green,blue}; enum struct Color:int {red,green,blue}; class C {int a; int b;}; class C {int a; int b;}; struct S {int a; int b;}; struct S {int a; int b;}; union U {int a; int b;}; union U {int a; int b;}; // but no effect on that int*p; int * p; int&r; int & r; int f(); char * f(); enum {red,green,blue}; enum {red,green,blue}; | inti; vectorv; int(*f)(int*); int(*f)(int*); enumColor{red,green,blue}; enumColor{red,green,blue}; enumstructColor{red,green,blue}; enumstructColor{red,green,blue}; enumclassColor{red,green,blue}; enumclassColor{red,green,blue}; enumstructColor:int{red,green,blue}; enumstructColor:int{red,green,blue}; classC{inta;intb;}; classC{inta;intb;}; structS{inta;intb;}; structS{inta;intb;}; unionU{inta;intb;}; unionU{inta;intb;}; // but no effect on that int*p; int*p; int&r; int&r; intf(); char*f(); enum{red,green,blue}; enum{red,green,blue}; |
Take care: the default is 'force' Edited by JEAYNE
Not the best code for this option? See how to improve the .uds file used to generate these examples.