noinline (Windows CE 5.0)
__declspec(noinline*)* extended storage-class modifier tells the compiler to never inline a particular member function (function in a class).
class X {
__declspec(noinline) int mbrfunc() { return 0; } // will not inline
};
See Also
Send Feedback on this topic to the authors