little help guys im still a newbie at c++
error: invalid conversion from 'VboVO* const* const' to 'VboVO**'
im getting this error when trying to compile. here is the relevant parts of my code
struct VboVO{..};
vector<VboVO*> m_vboVos;
vector<VboVO*>::iterator iVbovo;
for(iVbovo = m_vboVos.begin() ; iVbovo != m_vboVos.end(); ++iVbovo){
}
This is a guess
You are probably trying to perform this loop in a
constmember function of some class, withm_vboVosas a member variable. Thereforem_vboVosisconst, and you cannot use aniteratorwith aconst vector. Useconst_iteratorinstead.