Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
OpenGEODE
Commits
1aaa398d
Commit
1aaa398d
authored
Nov 18, 2019
by
Maxime Perrotin
Browse files
Fix case in Ada backend
parent
e0e990af
Changes
1
Hide whitespace changes
Inline
Side-by-side
opengeode/AdaGenerator.py
View file @
1aaa398d
...
...
@@ -844,7 +844,7 @@ package {process_name} is'''.format(generic=generic_spec,
u
' "{proc}_RI_{sig}");'
.
format
(
sep
=
UNICODE_SEP
,
sig
=
signame
,
proc
=
procname
))
proc
=
procname
.
lower
()
))
# for the .ads file, generate the declaration of the external procedures
for
proc
in
(
proc
for
proc
in
process
.
procedures
if
proc
.
external
):
...
...
@@ -902,7 +902,7 @@ package {process_name} is'''.format(generic=generic_spec,
u
' "{proc}_RI_{sig}");'
.
format
(
sep
=
UNICODE_SEP
,
sig
=
signame
,
proc
=
procname
))
proc
=
procname
.
lower
()
))
# for the .ads file, generate the declaration of timers set/reset functions
for
timer
in
process
.
timers
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment