Skip to content
Snippets Groups Projects
Commit 58decd80 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

COMP: specify correct boost namespace (issue seen on superbuild)

parent 95a6649b
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ RCC8VertexIterator<TGraph>
::RCC8VertexIterator()
{
m_Graph = GraphType::New();
tie(m_Iter, m_End) = vertices(*(m_Graph->GetGraph()));
boost::tie(m_Iter, m_End) = boost::vertices(*(m_Graph->GetGraph()));
}
/**
* Copy operator.
......@@ -51,7 +51,7 @@ RCC8VertexIterator<TGraph>
::RCC8VertexIterator(TGraph * graph)
{
m_Graph = graph;
tie(m_Iter, m_End) = vertices(*(m_Graph->GetGraph()));
boost::tie(m_Iter, m_End) = boost::vertices(*(m_Graph->GetGraph()));
}
/**
* Get the current object.
......@@ -108,7 +108,7 @@ void
RCC8VertexIterator<TGraph>
::GoToBegin(void)
{
tie(m_Iter, m_End) = vertices(*(m_Graph->GetGraph()));
boost::tie(m_Iter, m_End) = boost::vertices(*(m_Graph->GetGraph()));
}
/**
* Increment.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment