From c1d4aef4377ca5102e3f79bf9027f7f801263218 Mon Sep 17 00:00:00 2001 From: krishna_gadepalli Date: Mon, 5 Mar 2007 19:56:27 +0000 Subject: - Add a fix (from Ken Russel) for properly parsing negative constants in enums by adding getAllChildrenText() - Fixed the lineDirective() method in PCPP.java to emit the correct format of the line directive git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/gluegen/trunk@58 a78bb65f-1512-4460-ba86-f6dc96a7bf27 --- src/java/com/sun/gluegen/pcpp/PCPP.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/java/com/sun/gluegen/pcpp/PCPP.java') diff --git a/src/java/com/sun/gluegen/pcpp/PCPP.java b/src/java/com/sun/gluegen/pcpp/PCPP.java index 4a98542..d5d9604 100644 --- a/src/java/com/sun/gluegen/pcpp/PCPP.java +++ b/src/java/com/sun/gluegen/pcpp/PCPP.java @@ -867,7 +867,7 @@ public class PCPP { } private void lineDirective() { - print("#line " + lineNumber() + " \"" + filename() + "\""); + print("# " + lineNumber() + " \"" + filename() + "\""); println(); } } -- cgit v1.2.3