Commit cb339d02 by Alexandre Oliva Committed by Tom Tromey

javaprims.h (TRUE, FALSE): Redefine as themselves.

1999-08-12  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* include/javaprims.h (TRUE, FALSE): Redefine as themselves.

From-SVN: r28689
parent 402fd873
1999-08-12 Alexandre Oliva <oliva@dcc.unicamp.br>
* include/javaprims.h (TRUE, FALSE): Redefine as themselves.
1999-08-11 Bryce McKinlay <bryce@albatross.co.nz>
* java/util/BitSet.java (set, clear, hashCode): specify "1" constant
......
......@@ -11,6 +11,14 @@ details. */
#ifndef __JAVAPRIMS_H__
#define __JAVAPRIMS_H__
// FIXME: this is a hack until we get a proper gcjh.
// It is needed to work around system header files that define TRUE
// and FALSE.
#undef TRUE
#define TRUE TRUE
#undef FALSE
#define FALSE FALSE
// To force selection of correct types that will mangle consistently
// across platforms.
extern "Java"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment