* doc/extend.texi (Function Names): Make the example compilable.

From-SVN: r64350
This commit is contained in:
Steven Bosscher 2003-03-14 08:47:05 +00:00
parent a12f82908a
commit a721a60143
2 changed files with 5 additions and 1 deletions

View 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

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