|
From: <ai...@us...> - 2011-04-13 04:19:09
|
Revision: 11698
http://plplot.svn.sourceforge.net/plplot/?rev=11698&view=rev
Author: airwin
Date: 2011-04-13 04:19:03 +0000 (Wed, 13 Apr 2011)
Log Message:
-----------
Use standard code delimiters "%{" and "%}" inside %define ... %enddef
swig directives. This change appears to make no difference to build
and test results, but there is a good possibility it will improve
uncrustify styling results.
Modified Paths:
--------------
trunk/bindings/java/plplotjavac.i
Modified: trunk/bindings/java/plplotjavac.i
===================================================================
--- trunk/bindings/java/plplotjavac.i 2011-04-13 02:45:28 UTC (rev 11697)
+++ trunk/bindings/java/plplotjavac.i 2011-04-13 04:19:03 UTC (rev 11698)
@@ -125,10 +125,10 @@
%typemap(freearg) TYPE *OUTPUT, TYPE &OUTPUT ""
%typemap(argout) TYPE *OUTPUT, TYPE &OUTPUT
-{
+%{
JNITYPE jvalue = (JNITYPE)temp$argnum;
JCALL4(Set##JAVATYPE##ArrayRegion, jenv, $input, 0, 1, &jvalue);
-}
+%}
%typemap(typecheck) TYPE *INOUT = TYPECHECKTYPE;
%typemap(typecheck) TYPE &INOUT = TYPECHECKTYPE;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|