commit | d019e3d2ae739128635d36e1b6612df9bb49a3be | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed Oct 06 12:46:55 2021 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Thu Oct 07 08:26:13 2021 -0500 |
tree | bec3ab5c53cfaf8331a582d32ec521d878aa84cf | |
parent | 372c5668c0ed893f53edc0f9fa880cb50b48f203 [diff] |
catch exceptions as const Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Ia6e52141afe659db8a7eaaf77fe5198028f4d173
diff --git a/phosphor-ldap-config/ldap_config.cpp b/phosphor-ldap-config/ldap_config.cpp index 51b785a..599abaf 100644 --- a/phosphor-ldap-config/ldap_config.cpp +++ b/phosphor-ldap-config/ldap_config.cpp
@@ -729,7 +729,7 @@ } return false; } - catch (cereal::Exception& e) + catch (const cereal::Exception& e) { log<level::ERR>(e.what()); std::error_code ec;
diff --git a/phosphor-ldap-config/ldap_mapper_serialize.cpp b/phosphor-ldap-config/ldap_mapper_serialize.cpp index e8e56d4..9be8839 100644 --- a/phosphor-ldap-config/ldap_mapper_serialize.cpp +++ b/phosphor-ldap-config/ldap_mapper_serialize.cpp
@@ -79,7 +79,7 @@ } return false; } - catch (cereal::Exception& e) + catch (const cereal::Exception& e) { log<level::ERR>(e.what()); fs::remove(path);
diff --git a/phosphor-ldap-mapper/ldap_mapper_serialize.cpp b/phosphor-ldap-mapper/ldap_mapper_serialize.cpp index b0124c2..728b3fa 100644 --- a/phosphor-ldap-mapper/ldap_mapper_serialize.cpp +++ b/phosphor-ldap-mapper/ldap_mapper_serialize.cpp
@@ -81,7 +81,7 @@ } return false; } - catch (cereal::Exception& e) + catch (const cereal::Exception& e) { log<level::ERR>(e.what()); std::filesystem::remove(path);