Skip to content

Commit

Permalink
automaton.hh: fix the vertex property for the CSR graph
Browse files Browse the repository at this point in the history
Using the void old syntax does not work anymore since Boost 1.55.
Use boost:no_property instead.
  • Loading branch information
joudinet committed Jun 28, 2018
1 parent e42edf1 commit b18c7da
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions include/rukia/automaton.hh
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
// Copyright (C) Univ. Paris-SUD, Johan Oudinet <[email protected]> - 2008, 2009, 2010
//
// Copyright (C) Univ. Paris-SUD, Johan Oudinet <[email protected]> - 2008, 2009, 2010, 2018
//
// This file is part of Rukia.
//
//
// Rukia is free software: you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
//
// Rukia is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
//
// You should have received a copy of the GNU Lesser General Public
// License along with Rukia. If not, see <http://www.gnu.org/licenses/>.
//
//
#ifndef RUKIA_AUTOMATON_HH
# define RUKIA_AUTOMATON_HH
# include <string>
Expand Down Expand Up @@ -43,7 +43,7 @@ namespace rukia {

typedef boost::compressed_sparse_row_graph<
boost::directedS,
void,
boost::no_property,
detail::transition> automaton;

} // end namespace rukia
Expand Down

0 comments on commit b18c7da

Please sign in to comment.