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
bf765480
Commit
bf765480
authored
Oct 20, 2012
by
Alexandre Duret-Lutz
Browse files
* src/tgba/tgbaexplicit.hh: Fix hash_map definition to please old g++.
parent
b8ed85a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/tgba/tgbaexplicit.hh
View file @
bf765480
...
...
@@ -375,7 +375,8 @@ namespace spot
{
typedef
typename
transitions_t
::
iterator
trans_t
;
typedef
std
::
map
<
int
,
trans_t
>
acc_map
;
typedef
Sgi
::
hash_map
<
const
spot
::
state
*
,
acc_map
>
dest_map
;
typedef
Sgi
::
hash_map
<
const
spot
::
state
*
,
acc_map
,
ptr_hash
<
spot
::
state
>
>
dest_map
;
typename
ls_map
::
iterator
i
;
for
(
i
=
ls_
.
begin
();
i
!=
ls_
.
end
();
++
i
)
...
...
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