質問

I was checking on this Boost multi_index composite keys using MEM_FUN

Can someone tell me how to implement erase function for this example ?

Now I am doing

Name_set_by_last::iterator mitchells = names.get<last>().find("mitchell");
names.erase(mitchells );//shows error

正しい解決策はありません

他のヒント

names.get<last>().erase(mitchells);

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top