The following code breaks when defining `DFMT_BUILTIN_TYPES=0`: ```cpp int32_t x = 56; fmt::println("This is x={}", x); ``` Works fine without the define, but when defined outputs: ``` This is x=1073479024 ``` I'm working on an embedded system and would like to reduce the size of the generated binary.