use_options_overriding_for_qt_macros
Category: Use or Do not Use options Type: boolean [false, true] Default: true
Whether to apply special formatting for Qt SIGNAL/SLOT macros. Essentially, this tries to format these so that they match Qt's normalized form (i.e. the result of QMetaObject::normalizedSignature), which can slightly improve the performance of the QObject::connect call, rather than how they would otherwise be formatted. See options_for_QT.cpp for details. Default: true
raw CPP code | use_options_overriding_for_qt_macros=false | use_options_overriding_for_qt_macros=true |
---|---|---|
void f1(){for(i=0;i<10;i++)a++;} void f2(){for(i=0;i<10;i++){a++;}} | void f1(){ for(i=0; i<10; i++) a++; } void f2(){ for(i=0; i<10; i++){a++;} } | void f1(){ for(i=0; i<10; i++) a++; } void f2(){ for(i=0; i<10; i++){a++;} } |
Not the best code for this option? See how to improve the .uds file used to generate these examples.