* doc/extend.texi (Function Names): Make the example compilable.
authorSteven Bosscher <steven@gcc.gnu.org>
Fri, 14 Mar 2003 08:47:05 +0000 (08:47 +0000)
committerSteven Bosscher <steven@gcc.gnu.org>
Fri, 14 Mar 2003 08:47:05 +0000 (08:47 +0000)
From-SVN: r64350

gcc/ChangeLog
gcc/doc/extend.texi

index 7843f7f..f02c957 100644 (file)
@@ -1,3 +1,7 @@
+2003-03-14  Steven Bosscher  <steven@gcc.gnu.org>
+
+       * doc/extend.texi (Function Names): Make the example compilable.
+
 2003-03-13  David Edelsohn  <edelsohn@gnu.org>
 
        * config/rs6000/rs6000.c (processor_target_table): Really allow
index f09ee52..a5b26c4 100644 (file)
@@ -4316,7 +4316,7 @@ extern int printf (char *, ...);
 
 class a @{
  public:
-  sub (int i)
+  void sub (int i)
     @{
       printf ("__FUNCTION__ = %s\n", __FUNCTION__);
       printf ("__PRETTY_FUNCTION__ = %s\n", __PRETTY_FUNCTION__);