* src/tgbaalgos/weight.hh: Remove useless status.

This commit is contained in:
Alexandre Duret-Lutz 2015-01-08 21:46:44 +01:00
parent 5345cae839
commit ab985afa9e

View file

@ -1,5 +1,8 @@
// -*- coding: utf-8 -*-
// Copyright (C) 2015 Laboratoire de Recherche et Développement de
// l'Epita (LRDE).
// Copyright (C) 2004, 2014 Laboratoire d'Informatique de Paris 6 (LIP6), // Copyright (C) 2004, 2014 Laboratoire d'Informatique de Paris 6 (LIP6),
// département Systèmes Répartis Coopératifs (SRC), Université Pierre // département Systèmes Répartis Coopératifs (SRC), Université Pierre
// et Marie Curie. // et Marie Curie.
// //
// This file is part of Spot, a model checking library. // This file is part of Spot, a model checking library.
@ -49,8 +52,7 @@ namespace spot
const weight& w); const weight& w);
private: private:
typedef std::vector<int> weight_vector; std::vector<int> m;
weight_vector m;
}; };
}; };