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
a6f754b7
Commit
a6f754b7
authored
Jun 22, 2014
by
Alexandre Duret-Lutz
Browse files
* src/tgbaalgos/sccfilter.cc: Work around g++ 4.6.
parent
7d70229f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/tgbaalgos/sccfilter.cc
View file @
a6f754b7
...
...
@@ -946,8 +946,13 @@ namespace spot
};
// This pre-declaration is needed to work around a limitation in
// g++ 4.6.
template
<
typename
...
F
>
struct
compose_filters
;
template
<
typename
F1
,
typename
...
F2
>
struct
compose_filters
struct
compose_filters
<
F1
,
F2
...
>
{
F1
f1
;
compose_filters
<
F2
...
>
f2
;
...
...
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