Displaying 1 result from an estimated 1 matches for "8da4c0e8".
2020 Apr 07
3
Splitting up Type.h: Good idea, bad idea?
Hello Clang folks,
I was using -ftime-trace to see where the compiler spends time parsing
clang's own headers, and it pointed me to Type.h. Many AST headers need
QualType to be complete, but they do not need the full type class
hierarchy. To improve compile time, I have attempted to create a new
header, QualType.h, that defines only the QualType wrapper class. I have
started to transition