QuackatronHQ / Gigarepo

Found push_* with move over emplace CXX-W2028
Anti-pattern
Minor
1 occurrence in this check
use emplace_back instead of push_back
19  // Do work_exp.reserve(employee_names.size());
20  // work_exp.reserve(employee_names.size());
21  for (const auto& name : employee_names)
22    work_exp.push_back(EmployeeDetails(name));23}
24
25bool employee_exist(std::vector<EmployeeDetails> employee_details,