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:
parent
17a7a782a9
commit
06971a2698
8 changed files with 15 additions and 20 deletions
|
|
@ -467,8 +467,8 @@ namespace spot
|
|||
{
|
||||
}
|
||||
|
||||
SPOT_LOCAL bitvect_array(const bitvect_array&) SPOT_DELETED;
|
||||
SPOT_LOCAL void operator=(const bitvect_array&) SPOT_DELETED;
|
||||
SPOT_LOCAL bitvect_array(const bitvect_array&) = delete;
|
||||
SPOT_LOCAL void operator=(const bitvect_array&) = delete;
|
||||
|
||||
// Extra storage has been allocated at the end of the struct.
|
||||
char* storage()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue