I'd like to shorten variable names, so instead of this : FPData.Temps.T.Solar.Val
I'd like to use :
TEMP_Solar.Val
and define macro :
#define TEMP_ FPData.Temps.T.
But it works only if I put space in between :
TEMP_ Solar.Val
compiles ok, but I'd like to use this one
TEMP_Solar.Val
Possible? I know I could get around by using macro and arguments "TEMP_VAL(Solar)" but would like to keep it simple, linear concatenation...