mc: do not mix static and SPOT_API

* spot/mc/mc_instanciator.hh: Here.
This commit is contained in:
Etienne Renault 2020-05-19 07:58:48 +02:00
parent 6d390a342d
commit 1dc6ead1e0

View file

@ -79,9 +79,9 @@ namespace spot
template<typename algo_name, typename kripke_ptr, typename State, template<typename algo_name, typename kripke_ptr, typename State,
typename Iterator, typename Hash, typename Equal> typename Iterator, typename Hash, typename Equal>
static SPOT_API ec_stats instanciate(kripke_ptr sys, static ec_stats instanciate(kripke_ptr sys,
spot::twacube_ptr prop = nullptr, spot::twacube_ptr prop = nullptr,
bool trace = false) bool trace = false)
{ {
// FIXME ensure that algo_name contains all methods // FIXME ensure that algo_name contains all methods
@ -246,5 +246,6 @@ namespace spot
return instanciate<spot::lpar13<State, Iterator, Hash, Equal>, return instanciate<spot::lpar13<State, Iterator, Hash, Equal>,
kripke_ptr, State, Iterator, Hash, Equal> (sys, prop, trace); kripke_ptr, State, Iterator, Hash, Equal> (sys, prop, trace);
} }
SPOT_UNREACHABLE();
} }
} }