minor change in VFOrderedStarFF , the Pos is passed as const parameter

This commit is contained in:
Nico Pietroni 2015-05-24 14:50:47 +00:00
parent d58ac7ca03
commit 7aef00fb33
1 changed files with 2 additions and 2 deletions

View File

@ -962,7 +962,7 @@ void VVOrderedStarFF(Pos<FaceType> &startPos,
*
*/
template <class FaceType>
void VFOrderedStarFF(Pos<FaceType> &startPos,
void VFOrderedStarFF(const Pos<FaceType> &startPos,
std::vector<Pos<FaceType> > &posVec)
{
posVec.clear();
@ -1002,7 +1002,7 @@ void VFOrderedStarFF(Pos<FaceType> &startPos,
*/
template <class FaceType>
void VFOrderedStarFF(Pos<FaceType> &startPos,
void VFOrderedStarFF(const Pos<FaceType> &startPos,
std::vector<FaceType*> &faceVec,
std::vector<int> &edgeVec)
{