* spot/twa/bdddict.hh (bdd_info): Add noexcept, suggested by gcc 12.
This commit is contained in:
parent
d35f7bd37c
commit
4bb58f457b
1 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2011-2017 Laboratoire de Recherche et Développement
|
||||
// de l'Epita (LRDE).
|
||||
// Copyright (C) 2011-2017, 2022 Laboratoire de Recherche et
|
||||
// Développement de l'Epita (LRDE).
|
||||
// Copyright (C) 2003, 2004, 2006 Laboratoire d'Informatique de Paris
|
||||
// 6 (LIP6), département Systèmes Répartis Coopératifs (SRC),
|
||||
// Université Pierre et Marie Curie.
|
||||
|
|
@ -78,7 +78,7 @@ namespace spot
|
|||
|
||||
enum var_type { anon = 0, var, acc };
|
||||
struct bdd_info {
|
||||
bdd_info() : type(anon) {}
|
||||
bdd_info() noexcept: type(anon) {}
|
||||
var_type type;
|
||||
formula f; // Used unless t==anon.
|
||||
ref_set refs;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue