OSDN Git Service

* java-tree.h: Protect against multiple inclusion.
authorneroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 8 Jan 2003 13:28:18 +0000 (13:28 +0000)
committerneroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 8 Jan 2003 13:28:18 +0000 (13:28 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61043 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/java/ChangeLog
gcc/java/java-tree.h

index e8150af..c2b841b 100644 (file)
@@ -1,3 +1,7 @@
+2003-01-08  Nathanael Nerode  <neroden@gcc.gnu.org>
+
+       * java-tree.h: Protect against multiple inclusion.
+
 2003-01-07  Tom Tromey  <tromey@redhat.com>
 
        * class.c (add_assume_compiled): Don't adjust parent if we're
index a2f301d..1a85979 100644 (file)
@@ -26,6 +26,9 @@ The Free Software Foundation is independent of Sun Microsystems, Inc.  */
 
 /* Hacked by Per Bothner <bothner@cygnus.com> February 1996. */
 
+#ifndef GCC_JAVA_TREE_H
+#define GCC_JAVA_TREE_H
+
 #include "hashtab.h"
 
 /* Java language-specific tree codes.  */
@@ -1753,3 +1756,4 @@ enum
 };
 
 #undef DEBUG_JAVA_BINDING_LEVELS
+#endif /* ! GCC_JAVA_TREE_H */