diff options
author | Sven Gothel <[email protected]> | 2015-03-09 03:43:55 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-03-09 03:43:55 +0100 |
commit | 90e53d0c01f2fe62ff8c5bcc41741ec3c9c47e59 (patch) | |
tree | d24540588bcfe64ce6410fa1da9d68e6c8e6f30f /make | |
parent | 10060b091b76bee35246c5165d49ab546ebc4e37 (diff) |
Bug 1134 - Fix CMethodBindingEmitter return type '_res' qualifiers (part 2)
Commit 414a0146660cadd35d5ae270f7f819717e9c7374
removed the const/volatile of the local return variable.
This change also casts the function calling result
to the same - hence removing a possible c-compiler warning
of dropping qualifier const.
Diffstat (limited to 'make')
-rw-r--r-- | make/build-test.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/build-test.xml b/make/build-test.xml index b270ccd..624bd61 100644 --- a/make/build-test.xml +++ b/make/build-test.xml @@ -148,7 +148,7 @@ debug="${javacdebug}" debuglevel="${javacdebuglevel}"> <classpath refid="junit.compile.classpath"/> <compilerarg value="-proc:only"/> - <compilerarg value="-J-Djogamp.gluegen.structgen.debug"/> + <!-- compilerarg value="-J-Djogamp.gluegen.structgen.debug"/ --> <compilerarg value="-J-Djogamp.gluegen.structgen.output=${build_t.gen}/classes"/> <src path="${test.base.dir}/com/jogamp/gluegen/test/junit/structgen"/> <src path="${build_t.gen}/classes/com/jogamp/gluegen/test/junit/structgen" /> |