Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
ea0ffdd2
Commit
ea0ffdd2
authored
Oct 26, 2004
by
Kriang Lerdsuwanakij
Committed by
Kriang Lerdsuwanakij
Oct 26, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* libjava/java/lang/Class.h
(java::lang::Class): Correct friend class declaration. From-SVN: r89578
parent
51e63e60
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
5 deletions
+17
-5
libjava/ChangeLog
+5
-0
libjava/java/lang/Class.h
+12
-5
No files found.
libjava/ChangeLog
View file @
ea0ffdd2
2004
-
10
-
26
Kriang
Lerdsuwanakij
<
lerdsuwa
@
users
.
sourceforge
.
net
>
*
libjava
/
java
/
lang
/
Class
.
h
(
java
::
lang
::
Class
):
Correct
friend
class
declaration
.
2004
-
10
-
25
Geoffrey
Keating
<
geoffk
@
apple
.
com
>
*
Makefile
.
am
(
DARWIN_CRT_SRC
):
New
.
...
...
libjava/java/lang/Class.h
View file @
ea0ffdd2
...
...
@@ -143,6 +143,13 @@ struct _Jv_CatchClass
#define JV_CLASS(Obj) ((jclass) (*(_Jv_VTable **) Obj)->clas)
// Forward declarations for friends of java::lang::Class
class
_Jv_ClassReader
;
class
_Jv_InterpClass
;
class
_Jv_InterpMethod
;
class
_Jv_BytecodeVerifier
;
class
_Jv_StackTrace
;
class
java
::
lang
::
Class
:
public
java
::
lang
::
Object
{
public
:
...
...
@@ -379,17 +386,17 @@ private:
friend
void
_Jv_Defer_Resolution
(
void
*
cl
,
_Jv_Method
*
meth
,
void
**
);
friend
class
_Jv_ClassReader
;
friend
class
_Jv_InterpClass
;
friend
class
_Jv_InterpMethod
;
friend
class
::
_Jv_ClassReader
;
friend
class
::
_Jv_InterpClass
;
friend
class
::
_Jv_InterpMethod
;
#endif
#ifdef JV_MARKOBJ_DECL
friend
JV_MARKOBJ_DECL
;
#endif
friend
class
_Jv_BytecodeVerifier
;
friend
class
_Jv_StackTrace
;
friend
class
::
_Jv_BytecodeVerifier
;
friend
class
::
_Jv_StackTrace
;
friend
class
gnu
::
gcj
::
runtime
::
StackTrace
;
friend
class
java
::
io
::
VMObjectStreamClass
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment