Declarations with Qualifier const

The right hand side of declarations with qualifier const must not be instrumented if the variable shall be compile-time constant.

C++ example

const int length = (QUASI>MODO)?10:20;
int my_array[length] = {42};

The ternary-? operator must not be instrumented, as this would lead to uncompilable code.

With the configuration parameter CONST_INSTR, the behavior of ctc can be controlled.