Manages the implicit instantiation of templates.
>>- -q--tmplinst--=--+-always---+------------------------------>< +-noinline-+ '-none-----'
where the suboptions are:
auto | Manages the implicit instantiations according to the -qtempinc and -qtemplateregistry options. If both -qtempinc and -qtemplateregistry are disabled, implicit instantiation will always be performed, otherwise if both or any of the options are enabled, the compiler manages the implicit instantiation using either option which is enabled. |
always | Instruct the compiler to always perform implicit instantiation. If specified, -qtempinc and -qtemplateregistry compiler options are ignored. |
noinline | Instructs the compiler to do not perform any implicit instantiations. If specified, -qtempinc and -qtemplateregistry compiler options are ignored. |
none | Instruct the compiler to instantiate only inline functions. No other implicit instantiation is performed. If specified, -qtempinc and -qtemplateregistry compiler options are ignored. |
Related information