home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_11 / saks / immdes.hpp < prev    next >
Text File  |  1993-09-10  |  195b  |  13 lines

  1. const String &passthru(const String &x)
  2.     {
  3.     return x;
  4.     }
  5.  
  6. void foo()
  7.     {
  8.     String x("foo");
  9.     String y("bar");
  10.     size_t len = passthru(s + t).len();
  11.     // ...
  12.     }
  13.