Skip to content

Code style: Fix function indent #12

@jzych

Description

@jzych

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();
});
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions