Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inline function defintion error #799

Open
wants to merge 2 commits into
base: gh-pages
Choose a base branch
from
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