OSDN Git Service

* doc/extend.texi (Function Names): Make the example compilable.
authorsteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 14 Mar 2003 08:47:05 +0000 (08:47 +0000)
committersteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 14 Mar 2003 08:47:05 +0000 (08:47 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@64350 138bc75d-0d04-0410-961f-82ee72b054a4

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__);