aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2015-04-01 15:52:14 +0200
committerSven Gothel <[email protected]>2015-04-01 15:52:14 +0200
commiteddcad41a1dc2658747235b307bfd4ffd2c27bd3 (patch)
treedfb78015f0eba79ba48acd0f0ccc9eea50f80509
parentff2b708f8cb716a179f2de534c1694fce9434243 (diff)
Bug 1153 - GlueGen: Adapt to commit c6d5ee30e023d030697f14ae2c444ce7a5542e94 (ConstantDefinition rewrite)v2.4.0v2.3.2
-rw-r--r--src/main/java/com/jogamp/gluegen/jcpp/JCPP.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/jogamp/gluegen/jcpp/JCPP.java b/src/main/java/com/jogamp/gluegen/jcpp/JCPP.java
index 658306a..3e77799 100644
--- a/src/main/java/com/jogamp/gluegen/jcpp/JCPP.java
+++ b/src/main/java/com/jogamp/gluegen/jcpp/JCPP.java
@@ -109,7 +109,7 @@ public class JCPP implements GenericCPP {
null != source ? source.getLine() : -1,
null != source ? source.getColumn() : -1,
macro.toString());
- final ConstantDefinition c = new ConstantDefinition(macro.getName(), value, locus);
+ final ConstantDefinition c = new ConstantDefinition(macro.getName(), value, null, locus);
constants.add(c);
}
}