swig: prefer typedef to using

According to swig3.0. the 'using' keyword
in type aliasing is not fully supported yet.

* spot/ltsmin/ltsmin.hh: here.
This commit is contained in:
Etienne Renault 2016-04-22 21:32:14 +02:00
parent 9799f2884e
commit 7d2abe229b

View file

@ -29,7 +29,7 @@ namespace spot
{
struct spins_interface;
class cspins_iterator;
using cspins_state = int*;
typedef int* cspins_state;
class SPOT_API ltsmin_model final
{