From 7d2abe229b7df7beee47b27a99d1670439861f9f Mon Sep 17 00:00:00 2001 From: Etienne Renault Date: Fri, 22 Apr 2016 21:32:14 +0200 Subject: [PATCH] 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. --- spot/ltsmin/ltsmin.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spot/ltsmin/ltsmin.hh b/spot/ltsmin/ltsmin.hh index 17e10ab68..4762a0de9 100644 --- a/spot/ltsmin/ltsmin.hh +++ b/spot/ltsmin/ltsmin.hh @@ -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 {