0
Which one is better with reference to having an optimally functioning compiler in C++? Inline function or Not-inline function.
~ just wondering ~
2 Respostas
+ 1
If I got you right you just want the compiler to compile without warnings and errors!? In this case it definitely doesn't matter. Inline functions should just be used for small macros anyway, frequent use would lead to large executables.
+ 1
Thanks Aaron 😊 Satisfied my curiosity 😉