noinline (Windows CE 5.0)

Send Feedback

__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

__declspec

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.