c++11: explicitly delete copy constructors and operator=.
* src/ltlvisit/simplify.hh, src/ta/taexplicit.hh, src/ta/taproduct.hh, src/tgba/bdddict.hh, src/tgba/taatgba.hh, src/tgba/tgbabddconcrete.hh, src/tgba/tgbaexplicit.hh, src/tgba/tgbaproduct.hh, src/tgba/tgbasgba.hh, src/tgba/tgbatba.hh, src/tgba/tgbaunion.hh, src/tgba/wdbacomp.cc: Here.
This commit is contained in:
parent
557292bd11
commit
9cfc9f0f3f
12 changed files with 29 additions and 29 deletions
|
|
@ -132,9 +132,8 @@ namespace spot
|
|||
|
||||
private:
|
||||
// Disallow copy.
|
||||
ta_explicit(const ta_explicit& other);
|
||||
ta_explicit&
|
||||
operator=(const ta_explicit& other);
|
||||
ta_explicit(const ta_explicit& other) = delete;
|
||||
ta_explicit& operator=(const ta_explicit& other) = delete;
|
||||
|
||||
const tgba* tgba_;
|
||||
bdd all_acceptance_conditions_;
|
||||
|
|
|
|||
|
|
@ -202,9 +202,8 @@ namespace spot
|
|||
const kripke* kripke_;
|
||||
|
||||
// Disallow copy.
|
||||
ta_product(const ta_product&);
|
||||
ta_product&
|
||||
operator=(const ta_product&);
|
||||
ta_product(const ta_product&) = delete;
|
||||
ta_product& operator=(const ta_product&) = delete;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue