<div dir="ltr">Hey Manuel,<br><br>In an effort to apply Modular Code Generation to Clang internally, I came across the fact that this header contains a bunch of internal linkage variables. (now, maybe modular code generation should be compatible with internal linkage namespace-scoped variables... I'm looking into that)<br><br>These variables technically create ODR violations any time they're ODR-used in another inline function used in more than one translation unit.<br><br>Is there a good way we could fix this header so it doesn't create ODR violations (hopefully by not containing internal linkage entities)? I mean one simple solution is to declare all these things in a header and define them out of line. Since they have no actual state, that's probably pretty low-cost except for a lot of duplication. I'm happy to use a .def/.inc file to help remove a bunch of that duplication, if useful.<br><br>Open to ideas,<br><br>- Dave</div>