diff options
author | Sven Gothel <[email protected]> | 2014-06-17 03:32:45 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-06-17 03:32:45 +0200 |
commit | b378d9ceb20016eeadc536682a08df9acc67aee6 (patch) | |
tree | 5dfd600d786ff1ddabf13117e71a1b2c9a004548 /make/config/clImplCustomCode.java | |
parent | 71c6288353553056a955210d051b36617efee464 (diff) |
Adapt to GlueGen commit c3054a01990e55ab35756ea23ab7d7c05f24dd37 (compount call-by-value extension)
Diffstat (limited to 'make/config/clImplCustomCode.java')
-rw-r--r-- | make/config/clImplCustomCode.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/make/config/clImplCustomCode.java b/make/config/clImplCustomCode.java index 6c407110..f57995d1 100644 --- a/make/config/clImplCustomCode.java +++ b/make/config/clImplCustomCode.java @@ -19,6 +19,9 @@ return null; } addressTable.reset(bundle); + if( !initializeImpl() ) { + throw new RuntimeException("Initialization failure"); + } return bundle; } } ); } |