Unverified Commit f5ddd395 authored by Yi-Shu Tu's avatar Yi-Shu Tu Committed by GitHub
Browse files

Add Fortran type translation for `long long` (#3394)



* Add Fortran type translation for `long long`

* Replaced tabs with spaces
Co-authored-by: default avatarPeter Eastman <peter.eastman@gmail.com>
parent 71d9bb13
...@@ -900,6 +900,7 @@ class FortranHeaderGenerator(WrapperGenerator): ...@@ -900,6 +900,7 @@ class FortranHeaderGenerator(WrapperGenerator):
WrapperGenerator.__init__(self, inputDirname, output) WrapperGenerator.__init__(self, inputDirname, output)
self.typeTranslations = {'int': 'integer*4', self.typeTranslations = {'int': 'integer*4',
'bool': 'integer*4', 'bool': 'integer*4',
'long long': 'integer*8',
'double': 'real*8', 'double': 'real*8',
'char *': 'character(*)', 'char *': 'character(*)',
'const char *': 'character(*)', 'const char *': 'character(*)',
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment