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

Commit dc378257 authored by Chris Manton's avatar Chris Manton
Browse files

Compiled out [[maybe_unused]] int line_num = 0;

Bug: 267639443
Test: cert/run
Tag: #gd-refactor

Change-Id: I006fe7f126fffcd506fd3d8d261ed0384ed8d20d
parent a2c6b485
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ std::optional<ConfigCache> LegacyConfigFile::Read(size_t temp_devices_capacity)
    LOG_ERROR("unable to open file '%s', error: %s", path_.c_str(), strerror(errno));
    return std::nullopt;
  }
  int line_num = 0;
  [[maybe_unused]] int line_num = 0;
  ConfigCache cache(temp_devices_capacity, Device::kLinkKeyProperties);
  std::string line;
  std::string section(ConfigCache::kDefaultSectionName);