Controls whether or not to use the new parser supported by the CodeWarrior 2.5 C++ compiler and issue warning messages for missing typenames.
#pragma iso_templates on | off | reset
This pragma combines the functionality of pragmas parse_func_templ , parse_mfunc_templ and warn_no_typename .
This pragma ensures that your C++ source code is compiled using the newest version of the parser, which is stricter than earlier versions. The compiler issues a warning message if a typenames required by the C++ standard is missing but can still be determined by the compiler based on the context of the surrounding C++ syntax.
By default, this pragma is on.