Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 134dc1bc authored by Mårten Kongstad's avatar Mårten Kongstad Committed by Todd Kennedy
Browse files

idmap2: clang-format

Test: cmds/idmap2/static-checks.sh
Change-Id: Ie117062ef618bf4c61ebbc67aa09f568216ad582
parent e8460bf0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -98,6 +98,7 @@ Result<std::unique_ptr<std::vector<std::string>>> FindApkFiles(const std::vector
}

std::vector<std::string> PoliciesForPath(const std::string& apk_path) {
  // clang-format off
  static const std::vector<std::pair<std::string, std::string>> values = {
      {"/odm/", kPolicyOdm},
      {"/oem/", kPolicyOem},
@@ -106,6 +107,7 @@ std::vector<std::string> PoliciesForPath(const std::string& apk_path) {
      {"/system_ext/", kPolicySystem},
      {"/vendor/", kPolicyVendor},
  };
  // clang-format on

  std::vector<std::string> fulfilled_policies = {kPolicyPublic};
  for (auto const& pair : values) {