Comment on Unusual speed boost: size mattersparentComments−RogerL13yTry putting this in an .h file that you include in several places:void hi() { int x = 3; }without the inline and you will get a complaint that hi() is multiply defined at link time. So, one use case.
Comments
Try putting this in an .h file that you include in several places:
void hi() { int x = 3; }
without the inline and you will get a complaint that hi() is multiply defined at link time. So, one use case.