diff options
author | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-01 03:48:39 +0000 |
---|---|---|
committer | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-07-01 03:48:39 +0000 |
commit | fcda639fe62821e7e265564ac48ef0dad27482e3 (patch) | |
tree | c341047e194ce101f0d26b154d869a69d246b2dc /gcc/java/gcj.texi | |
parent | 79ced602d0bd29aba58082ff24a72aaabb74168a (diff) | |
download | gcc-fcda639fe62821e7e265564ac48ef0dad27482e3.tar.gz |
2002-06-29 T.J. Mather <tjmather@maxmind.com>
* gcj.texi: Fixed gcj invocation example so that it compiles.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55126 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/gcj.texi')
-rw-r--r-- | gcc/java/gcj.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/gcj.texi b/gcc/java/gcj.texi index 67fb135710c..05f31e0b798 100644 --- a/gcc/java/gcj.texi +++ b/gcc/java/gcj.texi @@ -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(); |