* src/tgbaalgos/sccfilter.cc: Work around g++ 4.6.
This commit is contained in:
parent
7d70229f5b
commit
a6f754b7c7
1 changed files with 6 additions and 1 deletions
|
|
@ -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>
|
template<typename F1, typename... F2>
|
||||||
struct compose_filters
|
struct compose_filters<F1, F2...>
|
||||||
{
|
{
|
||||||
F1 f1;
|
F1 f1;
|
||||||
compose_filters<F2...> f2;
|
compose_filters<F2...> f2;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue