| |||
| Home > ARM Compiler Reference > C and C++ implementation details > Old-style C parameters in C++ functions | |||
The ADS v1.2 and RVCT v1.2 C++ compilers enabled you to use old-style C parameters in C++ functions. That is,
void f(x) int x; { }
In the RVCT v2.x compilers, you must use the --anachronisms compiler
option if your code contains any old-style parameters in functions.
The compiler warns you if it finds any instances.