Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
vector<string> l;
l = parser.get_array_elements();
for(vector<string>::iterator it = l.begin();
- it != l.end(); it++) {
+ it != l.end(); ++it) {
if((*it).compare("\"user\"") == 0) {
found = true;
break;
l = parser.get_array_elements();
EXPECT_EQ(1U, l.size());
for(vector<string>::iterator it = l.begin();
- it != l.end(); it++) {
+ it != l.end(); ++it) {
if((*it).compare(string("\"") + uid + string("\"")) == 0) {
found = true;
break;
EXPECT_EQ(2U, l.size());
bool found2 = false;
for(vector<string>::iterator it = l.begin();
- it != l.end(); it++) {
+ it != l.end(); ++it) {
if((*it).compare(string("\"") + uid + string("\"")) == 0) {
found = true;
}