Add container_type alias in container TypeHandler

This commit is contained in:
Thierry Treyer 2023-10-06 10:22:27 -07:00 committed by Jake Hillion
parent 37b25bb278
commit 7eee6e0871

View File

@ -894,6 +894,11 @@ void genContainerTypeHandler(FeatureSet features,
} else {
code += " static constexpr bool captureKeys = false;\n";
}
code += " using container_type = ";
code += containerWithTypes;
code += ";\n";
code += " using type = ";
if (processors.empty()) {
code += "types::st::Unit<DB>";