home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH04 / A04151.TXT < prev    next >
Encoding:
Text File  |  1993-10-29  |  306 b   |  6 lines

  1. When you declare a function with the keyword inline, you are
  2. giving the compiler a suggestion to copy the code of the function
  3. to every point where it is called rather than transferring control
  4. to a single copy of the function code.  This can save some of the
  5. overhead that comes from function calls.
  6.