I would like to generate the following preprocessor pragmas
#pragma blabla column("0030")
#pragma blabla column("0130")
#pragma blabla column("0230")
...
#pragma blabla column("2330")
the hour changing from 0 to 23
Is that possible with BOOST_PP_LOCAL_LIMITS/ITERATE?
Yeah.
_Pragmasaved us there because there is no way to generate preprocessor directives such as#pragma, however it is very picky about what it accepts. In particular, it doesn't do string concatenation, so_Pragma("some" "thing")does not work, we have to concatenate everything in token-land then stringize as the last step.