Changed paths:
M hilti/toolchain/src/compiler/codegen/types.cc
M tests/Baseline/hilti.optimization.no-emit/output.c++
M tests/Baseline/hilti.types.tuple.coercion/output
Log Message:
-----------
Emit `TypeInfo` constants as `inline const`
We previously emitted type information as static constants which under
certain circumstances could have caused double frees on teardown. This
patch instead emits them as `inline const` whos setup and teardown
behavior is better defined.