diff options
author | Sven Gothel <[email protected]> | 2023-06-18 04:33:54 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-06-18 04:33:54 +0200 |
commit | 7825c4c053e0755e5dc0aa20127914887efa75e4 (patch) | |
tree | b23eb73e3386cd109aa69fe3ed8ea1bd153e9c6d /src/java/com/jogamp/gluegen/structgen | |
parent | 1159dadbdca861e4a6dd47e9da3ccb47ec15f4a3 (diff) |
CPP Enable Pragma Once: Default is 'true', since usually all compiler and APIs do support this feature
Diffstat (limited to 'src/java/com/jogamp/gluegen/structgen')
-rw-r--r-- | src/java/com/jogamp/gluegen/structgen/CStructAnnotationProcessor.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/jogamp/gluegen/structgen/CStructAnnotationProcessor.java b/src/java/com/jogamp/gluegen/structgen/CStructAnnotationProcessor.java index d785dad..1072675 100644 --- a/src/java/com/jogamp/gluegen/structgen/CStructAnnotationProcessor.java +++ b/src/java/com/jogamp/gluegen/structgen/CStructAnnotationProcessor.java @@ -100,7 +100,7 @@ public class CStructAnnotationProcessor extends AbstractProcessor { private static final String STRUCTGENOUTPUT_OPTION = "structgen.output"; private static final String STRUCTGENPRAGMA_ONCE = "structgen.enable.pragma.once"; private static final String STRUCTGENOUTPUT = PropertyAccess.getProperty("jogamp.gluegen."+STRUCTGENOUTPUT_OPTION, true, "gensrc"); - private static final String STRUCTGENPRAGMAONCE = PropertyAccess.getProperty("jogamp.gluegen."+STRUCTGENPRAGMA_ONCE, true, "false"); + private static final String STRUCTGENPRAGMAONCE = PropertyAccess.getProperty("jogamp.gluegen."+STRUCTGENPRAGMA_ONCE, true, "true"); private Filer filer; private Messager messager; |