Member inline functions

suggest change
// header (.hpp)    
struct A
{
    void i_am_inlined()
    {
    }
};

struct B
{
    void i_am_NOT_inlined();
};

// source (.cpp)    
void B::i_am_NOT_inlined()
{
}

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents