trouble.texi (C++ misunderstandings): Fix example code.
authorJonathan Wakely <redi@gcc.gnu.org>
Tue, 24 Aug 2004 08:46:15 +0000 (09:46 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Tue, 24 Aug 2004 08:46:15 +0000 (09:46 +0100)
2004-08-24  Jonathan Wakely  <redi@gcc.gnu.org>

* doc/trouble.texi (C++ misunderstandings): Fix example code.

From-SVN: r86470

gcc/ChangeLog
gcc/doc/trouble.texi

index d6a1db2c21eb93fe571093ea969058de55d5a0b4..00888c0e992f7bdca36311009683437c1727b9bf 100644 (file)
@@ -1,3 +1,7 @@
+2004-08-24  Jonathan Wakely  <redi@gcc.gnu.org>
+
+       * doc/trouble.texi (C++ misunderstandings): Fix example code.
+
 2004-08-24  Nick Clifton  <nickc@redhat.com>
 
        * config/m32r/m32r.h (PREDICATE_CODES): Remove duplicate defintion
index 39273c33e02c22411f10ae94b33a34847fbdf263..a546183737cd0a123e808f33040a06a2ca29afb7 100644 (file)
@@ -1064,7 +1064,7 @@ forces it to remain until the end of the scope of the name.  For
 example:
 
 @smallexample
-string& tmp = strfunc ();
+const string& tmp = strfunc ();
 charfunc (tmp.c_str ());
 @end smallexample