* src/graph/graph.hh, src/tgba/tgbagraph.hh: Cosmetic fixes.
This commit is contained in:
parent
13673a1421
commit
84f92541f3
2 changed files with 6 additions and 6 deletions
|
|
@ -97,7 +97,7 @@ namespace spot
|
|||
{
|
||||
}
|
||||
|
||||
// if Data is a POS type, G++ 4.8.2 wants default values for all
|
||||
// if Data is a POD type, G++ 4.8.2 wants default values for all
|
||||
// label fields unless we define this default constructor here.
|
||||
explicit boxed_label()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -174,11 +174,6 @@ namespace spot
|
|||
last_support_conditions_input_ = 0;
|
||||
}
|
||||
|
||||
graph_t& get_graph()
|
||||
{
|
||||
return g_;
|
||||
}
|
||||
|
||||
template <typename State_Name,
|
||||
typename Name_Hash = std::hash<State_Name>,
|
||||
typename Name_Equal = std::equal_to<State_Name>>
|
||||
|
|
@ -188,6 +183,11 @@ namespace spot
|
|||
return new named_graph<graph_t, State_Name, Name_Hash, Name_Equal>(g_);
|
||||
}
|
||||
|
||||
graph_t& get_graph()
|
||||
{
|
||||
return g_;
|
||||
}
|
||||
|
||||
const graph_t& get_graph() const
|
||||
{
|
||||
return g_;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue