genesys: Remove accidental uses of C++14 APIs

merge-requests/178/head
Povilas Kanapickas 2019-09-13 15:37:30 +03:00
rodzic dc52dc84f0
commit e89c6a0aab
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -78,7 +78,7 @@ struct RawPixel
bool operator==(const RawPixel& other) const
{
return std::equal(std::begin(data), std::end(data),
std::begin(other.data), std::end(other.data));
std::begin(other.data));
}
};