Skip to content

Commit

Permalink
Add Fortran type translation for long long (#3394)
Browse files Browse the repository at this point in the history
* Add Fortran type translation for `long long`

* Replaced tabs with spaces

Co-authored-by: Peter Eastman <peter.eastman@gmail.com>
  • Loading branch information
yishutu and peastman committed Dec 27, 2021
1 parent 71d9bb1 commit f5ddd39
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions wrappers/generateWrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -900,6 +900,7 @@ def __init__(self, inputDirname, output):
WrapperGenerator.__init__(self, inputDirname, output)
self.typeTranslations = {'int': 'integer*4',
'bool': 'integer*4',
'long long': 'integer*8',
'double': 'real*8',
'char *': 'character(*)',
'const char *': 'character(*)',
Expand Down

0 comments on commit f5ddd39

Please sign in to comment.