aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/gluegen/DebugEmitter.java
diff options
context:
space:
mode:
authorSven Gothel <sgothel@jausoft.com>2023-08-04 20:46:50 +0200
committerSven Gothel <sgothel@jausoft.com>2023-08-04 20:46:50 +0200
commit8fcea7ef29de9036871efabcd2288b0059af5007 (patch)
tree2492a10405fedeee49ff08b5a5f88b85a7ee3921 /src/java/com/jogamp/gluegen/DebugEmitter.java
parent6dce08b3410cf7f6a1848f814496c5e8c2e1ff73 (diff)
parentb08c61935daa0191f4ec59c6998bc56dae18e54d (diff)
Merge remote-tracking branch 'Mathieu_Fery/feature/prevent_callback_generation_if_setter_is_absent'
Diffstat (limited to 'src/java/com/jogamp/gluegen/DebugEmitter.java')
-rw-r--r--src/java/com/jogamp/gluegen/DebugEmitter.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/java/com/jogamp/gluegen/DebugEmitter.java b/src/java/com/jogamp/gluegen/DebugEmitter.java
index 9824462..8b53827 100644
--- a/src/java/com/jogamp/gluegen/DebugEmitter.java
+++ b/src/java/com/jogamp/gluegen/DebugEmitter.java
@@ -84,7 +84,8 @@ public class DebugEmitter implements GlueEmitter {
@Override
public void beginFunctions(final TypeDictionary typedefDictionary,
final TypeDictionary structDictionary,
- final Map<Type, Type> canonMap) {
+ final Map<Type, Type> canonMap,
+ List<FunctionSymbol> cFunctions) {
final Set<String> keys = typedefDictionary.keySet();
for (final String key: keys) {
final Type value = typedefDictionary.get(key);