Part Number: TMS320F28035
Tool/software: TI C/C++ Compiler
Hi,
In the following code
// *********** test *********************
int global_var_a;
int global_var_b;
static inline void Func2(void);
static void Func1(void);
static void Func1(void)
{
global_var_a++;
Func2();
}
static void Func2(void)
{
global_var_b++;
}
// *********** test end *********************
I get no warning about mismatch between definition and declaration of Func2 (missing inline).
Is this intended or a (minor) compiler error?
Regards,
Stephan