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:
parent
9799f2884e
commit
7d2abe229b
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ namespace spot
|
||||||
{
|
{
|
||||||
struct spins_interface;
|
struct spins_interface;
|
||||||
class cspins_iterator;
|
class cspins_iterator;
|
||||||
using cspins_state = int*;
|
typedef int* cspins_state;
|
||||||
|
|
||||||
class SPOT_API ltsmin_model final
|
class SPOT_API ltsmin_model final
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue