diff --git a/cppguide.html b/cppguide.html index 487529e..9c61fef 100644 --- a/cppguide.html +++ b/cppguide.html @@ -355,9 +355,7 @@ defined in another project.
lines or fewer. -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