cp-tree.h (set_identifier_local_value): Provide prototype.
* cp-tree.h (set_identifier_local_value): Provide prototype. * decl2.c (do_namespace_alias): Remove unused variables `binding' and `old'. From-SVN: r21786
This commit is contained in:
parent
efe3eb65d1
commit
69789cfc8f
4 changed files with 10 additions and 5 deletions
|
@ -1,3 +1,10 @@
|
|||
Mon Aug 17 10:40:18 1998 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* cp-tree.h (set_identifier_local_value): Provide prototype.
|
||||
|
||||
* decl2.c (do_namespace_alias): Remove unused variables `binding'
|
||||
and `old'.
|
||||
|
||||
Fri Aug 14 16:42:27 1998 Nick Clifton <nickc@cygnus.com>
|
||||
|
||||
* Makefile.in: Rename BBISON to BISON so that it can be properly
|
||||
|
|
|
@ -103,9 +103,9 @@ g++-cross$(exeext): g++$(exeext)
|
|||
-rm -f g++-cross$(exeext)
|
||||
cp g++$(exeext) g++-cross$(exeext)
|
||||
|
||||
cxxmain.o: cplus-dem.c demangle.h
|
||||
cxxmain.o: $(srcdir)/../libiberty/cplus-dem.c demangle.h
|
||||
rm -f cxxmain.c
|
||||
$(LN_S) $(srcdir)/cplus-dem.c cxxmain.c
|
||||
$(LN_S) $(srcdir)/../libiberty/cplus-dem.c cxxmain.c
|
||||
$(CC) -c -DMAIN $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
|
||||
-DVERSION=\"$(version)\" cxxmain.c
|
||||
|
||||
|
|
|
@ -2449,6 +2449,7 @@ extern tree perform_qualification_conversions PROTO((tree, tree));
|
|||
|
||||
/* decl.c */
|
||||
/* resume_binding_level */
|
||||
extern void set_identifier_local_value PROTO((tree, tree));
|
||||
extern int global_bindings_p PROTO((void));
|
||||
extern int toplevel_bindings_p PROTO((void));
|
||||
extern void keep_next_level PROTO((void));
|
||||
|
|
|
@ -4619,9 +4619,6 @@ void
|
|||
do_namespace_alias (alias, namespace)
|
||||
tree alias, namespace;
|
||||
{
|
||||
tree binding;
|
||||
tree old;
|
||||
|
||||
if (TREE_CODE (namespace) != NAMESPACE_DECL)
|
||||
{
|
||||
/* The parser did not find it, so it's not there. */
|
||||
|
|
Loading…
Add table
Reference in a new issue