Search Results

0
votes

Benefits of inline functions in C++?

During optimization many compilers will inline functions even if you didn't mark them. You generally only need to mark functions as inline if you know something the compiler doesn't, as it can usua …