diff --git a/Framework/ICat/src/CatalogLogin.cpp b/Framework/ICat/src/CatalogLogin.cpp index 70a4599b36e26beca5ff28593f8cccba276a69bf..79c7ca074ad612046a70c69424cc22f85a52b963 100644 --- a/Framework/ICat/src/CatalogLogin.cpp +++ b/Framework/ICat/src/CatalogLogin.cpp @@ -29,8 +29,9 @@ std::vector<std::string> namesOfFacilitiesWithICAT() { }; auto result = Kernel::ConfigService::Instance().getFacilityNames(); - result.erase(std::remove_if(result.begin(), result.end(), facilityDoesNotHaveICAT), - result.end()); + result.erase( + std::remove_if(result.begin(), result.end(), facilityDoesNotHaveICAT), + result.end()); return result; }