Also, this construct:
type
Vector* {.importcpp: "std::vector", header: "vector".} [T] = object
Rungives this warning: > Warning: pragma before generic parameter list is deprecated [Deprecated] What is the right way to import that type so that I do not get that warning?
