mirror of
https://gitlab.com/scemama/irpf90.git
synced 2024-11-09 07:33:43 +01:00
Fixed types in modules
This commit is contained in:
parent
3ba8730747
commit
d4e16bfaa8
@ -176,7 +176,7 @@ class Fmodule(object):
|
||||
result = modify_functions(result)
|
||||
use,dec,result = extract_use_dec_text(result)
|
||||
self._use = make_single(map(lambda x: " "+x[1].text, use))
|
||||
self._dec = make_single(map(lambda x: " "+x[1].text, dec))
|
||||
self._dec = map(lambda x: " "+x[1].text, dec)
|
||||
result = provide_variables(result)
|
||||
result = move_to_top(result,Declaration)
|
||||
result = move_to_top(result,Implicit)
|
||||
|
Loading…
Reference in New Issue
Block a user