C4300: Call of an empty function removed

[INFORMATION]

Description

If the option -Oi is enabled, calls of empty functions are removed.

Example
  void f() {

  
  }

  
  void main() {

  
    f();        // this call is removed !

  
  }

  
Tips

If for any reason you need a call of an empty function, disable the option -Oi.

See also