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()
{
}
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents