Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
__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