gcj.texi: Fixed gcj invocation example so that it compiles.

2002-06-29  T.J. Mather  <tjmather@maxmind.com>

	* gcj.texi: Fixed gcj invocation example so that it compiles.

From-SVN: r55126
This commit is contained in:
T.J. Mather 2002-07-01 03:48:39 +00:00 committed by Bryce McKinlay
parent 118f8dc12c
commit 32c4621e89
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-06-29 T.J. Mather <tjmather@maxmind.com>
* gcj.texi: Fixed gcj invocation example so that it compiles.
2002-06-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* lex.c (java_init_lex): Avoid incorrect hardcoded constant 11.

View File

@ -1901,7 +1901,7 @@ int main(int argc, char *argv)
JvAttachCurrentThread(NULL, NULL);
String *message = JvNewStringLatin1("Hello from C++");
JvInitClass(&System.class$);
JvInitClass(&System::class$);
System::out->println(message);
JvDetachCurrentThread();