Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
20773590
Commit
20773590
authored
Sep 30, 2015
by
Alexandre Duret-Lutz
Browse files
* src/tl/dot.cc: Fix assumption about call orders.
parent
4a43e24a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/tl/dot.cc
View file @
20773590
...
...
@@ -109,7 +109,11 @@ namespace spot
for
(
auto
c
:
f
)
{
os_
<<
" "
<<
src
<<
" -> "
<<
rec
(
c
);
// Do not merge the next two lines, as there is no
// guarantee that rec will be called before we start
// printing the transition.
int
dst
=
rec
(
c
);
os_
<<
" "
<<
src
<<
" -> "
<<
dst
;
if
(
childnum
>
0
)
os_
<<
" [taillabel=
\"
"
<<
childnum
<<
"
\"
]"
;
if
(
childnum
==
-
2
)
...
...
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