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

@ -118,8 +118,8 @@ namespace spot
private:
// Disallow copy.
ta_explicit(const ta_explicit& other) SPOT_DELETED;
ta_explicit& operator=(const ta_explicit& other) SPOT_DELETED;
ta_explicit(const ta_explicit& other) = delete;
ta_explicit& operator=(const ta_explicit& other) = delete;
const_twa_ptr tgba_;
state_ta_explicit* artificial_initial_state_;

View file

@ -194,8 +194,8 @@ namespace spot
const_kripke_ptr kripke_;
// Disallow copy.
ta_product(const ta_product&) SPOT_DELETED;
ta_product& operator=(const ta_product&) SPOT_DELETED;
ta_product(const ta_product&) = delete;
ta_product& operator=(const ta_product&) = delete;
};