Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions cppguide.html
Original file line number Diff line number Diff line change
Expand Up @@ -355,9 +355,10 @@ <h3 id="Inline_Functions">Inline Functions</h3>
lines or fewer.</p>

<p class="definition"></p>
<p>You can declare functions in a way that allows the compiler to expand
them inline rather than calling them through the usual
function call mechanism.</p>
<p>Declaring a function inline suggests that the compiler
replace every call to that function with code in the
function definition, rather than calling them through the
usual function call mechanism.</p>

<p class="pros"></p>
<p>Inlining a function can generate more efficient object
Expand Down