summaryrefslogtreecommitdiff
path: root/lib/sbin/create_fortran_stuff.pl
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-01 15:24:21 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-01 15:24:21 +0000
commit18c23b96d716f33e659e39d337a1516a1f6638cb (patch)
tree54e438db7870a51d33d0779fa0b78893e1545af6 /lib/sbin/create_fortran_stuff.pl
parent08c3f083ce31e5e4ced7792d0cdcdd67512ea998 (diff)
Added all datatypes to parsers (but they don't work with pugh yet).
NOTE THAT INTEGER -> INT in param.ccl and interface.ccl In the param.ccl and interface.ccl you can have one optional cctk_ in front of each datatype. I'll be checking in changes for all thorns now ... you will have to go the realclean thing I would guess after updating git-svn-id: http://svn.cactuscode.org/flesh/trunk@610 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/create_fortran_stuff.pl')
-rw-r--r--lib/sbin/create_fortran_stuff.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sbin/create_fortran_stuff.pl b/lib/sbin/create_fortran_stuff.pl
index c3595d78..dbd3793d 100644
--- a/lib/sbin/create_fortran_stuff.pl
+++ b/lib/sbin/create_fortran_stuff.pl
@@ -188,9 +188,9 @@ sub get_fortran_type_string
$type_string = "CCTK_STRING ";
}
elsif($type eq "LOGICAL" ||
- $type eq "INTEGER")
+ $type eq "INT")
{
- $type_string = "INTEGER ";
+ $type_string = "CCTK_INT";
}
elsif($type eq "REAL")
{