diff options
author | Thomas Neumann <tneumann@users.sourceforge.net> | 2007-04-12 19:00:38 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2007-04-12 19:00:38 +0000 |
commit | 4557bf49fac7b10c06ecfa164c95d4a17c3722fa (patch) | |
tree | 018ae30fbec0fbac3167801eba3683f684fece14 /gcc/stub-objc.c | |
parent | 5cd09fac3dc9c8ef5fbb6de8311d6646618ebcdb (diff) | |
download | gcc-4557bf49fac7b10c06ecfa164c95d4a17c3722fa.tar.gz |
stub-objc.c (objc_build_keyword_decl): Avoid C++ keywords.
2007-04-12 Thomas Neumann <tneumann@users.sourceforge.net>
* stub-objc.c (objc_build_keyword_decl): Avoid C++ keywords.
From-SVN: r123764
Diffstat (limited to 'gcc/stub-objc.c')
-rw-r--r-- | gcc/stub-objc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/stub-objc.c b/gcc/stub-objc.c index 0cd6017fd1a..c2bfe94c214 100644 --- a/gcc/stub-objc.c +++ b/gcc/stub-objc.c @@ -197,7 +197,7 @@ objc_finish_method_definition (tree ARG_UNUSED (fndecl)) tree objc_build_keyword_decl (tree ARG_UNUSED (selector), - tree ARG_UNUSED (typename), + tree ARG_UNUSED (type), tree ARG_UNUSED (identifier)) { return 0; |