Add missing <limits> header to CompressedVector.h

master
Michal Fratczak 2023-02-28 19:10:19 +01:00
rodzic e6e68bff5c
commit 82930e34dc
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -23,6 +23,7 @@
#include <vector>
#include <algorithm>
#include <iostream>
#include <limits>
namespace habdec
{
@ -83,7 +84,7 @@ public:
max_ = *std::max_element(values_.begin(), values_.end());
return max_;
}
private:
template<typename U>