I am using the mongo-cpp driver trying to convert the object ID of a BSON object to a string
BSONObj r=some_function();
BSONElement oi;
r.getObjectID(oi);
OID o=oi.__oid();
cout<<"oid:"<<o.toString()<<endl;`
I am sure that the BSONObj has valid data but getting the following error