natClassLoader.cc (_Jv_NewClass): Use JV_STATE_NOTHING, not `0'.

* java/lang/natClassLoader.cc (_Jv_NewClass): Use
	JV_STATE_NOTHING, not `0'.
	* java/lang/Class.h: Replaced JV_STATE_ defines with enum.

From-SVN: r29033
This commit is contained in:
Tom Tromey
1999-09-01 21:05:17 +00:00
committed by Tom Tromey
parent 45329b398e
commit 6c2a11802a
3 changed files with 20 additions and 15 deletions
+1 -1
View File
@@ -547,7 +547,7 @@ _Jv_NewClass (_Jv_Utf8Const *name, jclass superclass,
ret->interfaces = NULL;
ret->loader = loader;
ret->interface_count = 0;
ret->state = 0;
ret->state = JV_STATE_NOTHING;
ret->thread = NULL;
_Jv_RegisterClass (ret);