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

Commit 483c2f90 authored by Christopher Ferris's avatar Christopher Ferris Committed by Gerrit Code Review
Browse files

Merge "libbacktrace: Fix clang-tidy warning"

parents e351e5ed e9bd8df8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@ public:
      index_++;
      return *this;
    }
    iterator& operator++(int increment) {
    const iterator operator++(int increment) {
      index_ += increment;
      return *this;
    }
@@ -87,7 +87,7 @@ public:
      index_--;
      return *this;
    }
    iterator& operator--(int decrement) {
    const iterator operator--(int decrement) {
      index_ -= decrement;
      return *this;
    }