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:
Alexandre Duret-Lutz 2013-12-16 00:12:26 +01:00
parent 557292bd11
commit 9cfc9f0f3f
12 changed files with 29 additions and 29 deletions

View file

@ -1,6 +1,6 @@
// -*- coding: utf-8 -*-
// Copyright (C) 2011, 2012 Laboratoire de Recherche et Développement
// de l'Epita.
// Copyright (C) 2011, 2012, 2013 Laboratoire de Recherche et
// Développement de l'Epita.
//
// This file is part of Spot, a model checking library.
//
@ -271,8 +271,8 @@ namespace spot
bdd the_acceptance_cond_;
// Disallow copy.
tgba_wdba_comp_proxy(const tgba_wdba_comp_proxy&);
tgba_wdba_comp_proxy& operator=(const tgba_wdba_comp_proxy&);
tgba_wdba_comp_proxy(const tgba_wdba_comp_proxy&) = delete;
tgba_wdba_comp_proxy& operator=(const tgba_wdba_comp_proxy&) = delete;
};
}