diff --git a/cppguide.html b/cppguide.html index 487529ee2..e782e9176 100644 --- a/cppguide.html +++ b/cppguide.html @@ -355,9 +355,10 @@
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.
+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.
Inlining a function can generate more efficient object