Procházet zdrojové kódy

Add missing operator== for lm pair iterator

default_compile_flags
vector-of-bool před 5 roky
rodič
revize
c69960a5f0
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  1. +1
    -0
      src/libman/parse.hpp

+ 1
- 0
src/libman/parse.hpp Zobrazit soubor

@@ -58,6 +58,7 @@ public:
}

inline bool operator!=(const pair_iterator& o) const noexcept { return _iter != o._iter; }
inline bool operator==(const pair_iterator& o) const noexcept { return _iter == o._iter; }

auto begin() const noexcept { return *this; }
auto end() const noexcept { return pair_iterator(_end, _end, _key); }

Načítá se…
Zrušit
Uložit