diff options
author | Mark Mitchell <mark@codesourcery.com> | 2002-12-28 06:38:52 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2002-12-28 06:38:52 +0000 |
commit | dfe5a36e9576498d7aa9555e138b21f6ba9ee214 (patch) | |
tree | bba7de0c691d951ea3bfa44719a322941f969d38 /libjava/include | |
parent | 239b7deaef30a58050dca4a69ca8ef34ae3f2194 (diff) | |
download | gcc-dfe5a36e9576498d7aa9555e138b21f6ba9ee214.zip gcc-dfe5a36e9576498d7aa9555e138b21f6ba9ee214.tar.gz gcc-dfe5a36e9576498d7aa9555e138b21f6ba9ee214.tar.bz2 |
boehm.cc: Remove stray semicolon.
* boehm.cc: Remove stray semicolon.
* interpret.cc: Likewise.
* prims.cc: Likewise.
* verify.cc (_Jv_BytecodeVerifier::verify_fail): Move definition
earlier to ensure default arguments are processed.
* gcj/array.h (JArray): Add forward declaration.
(elements): Likewise.
* gcj/javaprim.h: Remove stray semicolons.
* include/bohm-gc.h: Likewise.
* include/jni.h: Likewise.
* include/jvm.h: Likewise.
* java/lang/Class.h (_Jv_GetArrayClass): Declare _Jv_NewArrayClass.
From-SVN: r60556
Diffstat (limited to 'libjava/include')
-rw-r--r-- | libjava/include/boehm-gc.h | 4 | ||||
-rw-r--r-- | libjava/include/jni.h | 2 | ||||
-rw-r--r-- | libjava/include/jvm.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/libjava/include/boehm-gc.h b/libjava/include/boehm-gc.h index 6c60c79..509900c 100644 --- a/libjava/include/boehm-gc.h +++ b/libjava/include/boehm-gc.h @@ -1,7 +1,7 @@ // -*- c++ -*- // boehm-gc.h - Defines for Boehm collector. -/* Copyright (C) 1998, 1999 Free Software Foundation +/* Copyright (C) 1998, 1999, 2002 Free Software Foundation This file is part of libgcj. @@ -19,7 +19,7 @@ extern "C" { JV_MARKOBJ_DECL; JV_MARKARRAY_DECL; -}; +} // Enough stuff to inline _Jv_AllocObj. Ugly. #include <gcj/javaprims.h> diff --git a/libjava/include/jni.h b/libjava/include/jni.h index 31f5798..cab4571 100644 --- a/libjava/include/jni.h +++ b/libjava/include/jni.h @@ -211,7 +211,7 @@ extern JNIIMPEXP jint JNICALL JNI_CreateJavaVM (JavaVM **, void **, void *); extern JNIIMPEXP jint JNICALL JNI_GetCreatedJavaVMs(JavaVM **, jsize, jsize *); #ifdef __cplusplus -}; +} #endif /* __cplusplus */ typedef union jvalue diff --git a/libjava/include/jvm.h b/libjava/include/jvm.h index e02901d..1e60498 100644 --- a/libjava/include/jvm.h +++ b/libjava/include/jvm.h @@ -162,7 +162,7 @@ namespace gcj /* Set to true by _Jv_CreateJavaVM. */ extern bool runtimeInitialized; -}; +} /* Type of pointer used as finalizer. */ typedef void _Jv_FinalizerFunc (jobject); |