I get an compile error here and I have no idea whats wrong with the code. I am using g++ 4.9.2.
#include<iostream>
#include<deque>
using std::string;
using std::deque;
class Dummy {
public:
virtual ~Dummy(){};
Dummy():ID_("00") {};
private:
const string ID_;
};
int main(){
{
deque <Dummy> waiter;
waiter.push_back(Dummy());
waiter.erase( waiter.begin() );
}
return 0;
}
Edit: I know that removing the const removes the compilation error, but I have no idea why. Anyway, I need this const.
std::deque::erase expects the type of element should be MoveAssignable:
And class
Dummy
has a const memberconst string ID_;
, which make it not assignable by default assignment operator.You might make
ID_
a non-const member, or provide your own assignment operator to make it assignable. e.g.LIVE