'function' : unreferenced inline function has been removed
The optimizer removed an inline function that is not called. The following sample generates C4514:
class A { public: void func() { // C4514, remove the function to resolve } }; void main() { }