error: no match for ‘operator+’

报错如下:请问大佬们这个错误该如何修改可以编译通过啊
数据类型是:
boost::unordered_map Itt;
boost::unordered_map::iterator Itt_it;
Int gid,Trd;
报错的行是:
for(Itt_it=Itt.begin()+gid;Itt_it < Itt.end();Itt_it=Itt_it+Trd){
detect.cpp:857:62: error: no match for ‘operator+’ (operand types are ‘boost::unordered::unordered_mapstd::__cxx11::basic_string<char, int>::iterator {aka boost::unordered::iterator_detail::iterator, int> > >}’ and ‘int’)

for(Itt_it=Itt.begin();itt_it != Itt.end();Itt_it++)
{
}
应该这样写没问题

是说boost这个库,没有对+号进行重载,他不认识,应该是换成++就行了