get rid of SPOT_DELETED

It was only needed with Swig versions older than what we have now.

* src/misc/common.hh: Here.
* src/misc/bitvect.hh, src/misc/common.hh, src/ta/taexplicit.hh,
src/ta/taproduct.hh, src/tl/simplify.hh, src/twa/bdddict.hh,
src/twa/taatgba.hh, src/twa/twaproduct.hh: Use = delete directly.
This commit is contained in:
Alexandre Duret-Lutz 2015-10-01 20:06:39 +02:00
parent 17a7a782a9
commit 06971a2698
8 changed files with 15 additions and 20 deletions

View file

@ -75,15 +75,10 @@
#define SPOT_API_VAR extern SPOT_API
// Swig 2.0 does not understand '= delete'. This already
// works with the development version of Swig 3.
// Swig 3.0.2 still does not understand 'final' when used
// Swig 3.0.2 does not understand 'final' when used
// at class definition.
#ifdef SWIG
#define SPOT_DELETED
#define final
#else
#define SPOT_DELETED = delete
#endif