Say I have this small function in a source file
static void foo()
{
}
and I build an optimized version of my binary yet I don't want this function inlined (for optimization purposes). is there a macro I can add in a source code to prevent the inlining?
thanks