auto is comfortable to use but sometimes, for a matter of legibility while programming I would prefer to have the inferred type written in the source code instead of auto.
Is there a functionality of gcc/clang or some other tool/VSCode extension ( for linux or macos ) that takes as input the source files and spits back the same source files but with auto replaced by its inferred type?
I tried googling but and the closest thing I've found is this StackOverflow question and it doesn't answer my question.