Code inside {} brackets is missing indent. After lambda function code style of brackets is different then in rest of file.
|
{ |
|
std::sort(peopleBase_.begin(), peopleBase_.end(), |
|
[](Person* lh, Person* rh){ |
|
return lh->getLastName() < rh->getLastName(); |
|
}); |
|
} |
|
{ |
|
std::sort(peopleBase_.begin(), peopleBase_.end(), |
|
[](Person* lh, Person* rh){ |
|
return lh->getPesel() < rh->getPesel(); |
|
}); |
|
} |
Code inside {} brackets is missing indent. After lambda function code style of brackets is different then in rest of file.
CS_Database/src/Database.cpp
Lines 23 to 28 in 4833021
CS_Database/src/Database.cpp
Lines 31 to 36 in 4833021