* src/ltlast/visitor.hh (visitor, const_visitor): Add empty

virtual destructors.
* src/tgba/tgbabddfactory.hh (tgba_bdd_factory): Likewise.
* src/misc/hash.hh: Use the std namespace only with GCC 3.0,
not with all compiler versions with minor version 0.
* src/tgba/tgbatba.cc (tgba_tba_proxy_succ_iterator): Fix
friend declaration of ::spot::tgba_tba_proxy.
This commit is contained in:
Alexandre Duret-Lutz 2005-09-06 11:53:14 +00:00
parent 6bcc8c3ce1
commit 048a5825de
5 changed files with 17 additions and 4 deletions

View file

@ -40,7 +40,7 @@
# else
# include <ext/hash_map>
# include <ext/hash_set>
# if __GNUC_MINOR__ == 0
# if __GNUC__ == 3 && __GNUC_MINOR__ == 0
namespace Sgi = std; // GCC 3.0
# else
namespace Sgi = ::__gnu_cxx; // GCC 3.1 and later