Updated to newest IDF with new GCC

This commit is contained in:
2022-06-13 20:35:35 +02:00
parent 39a6c64439
commit a155041878

View File

@ -16,8 +16,8 @@ public:
result_type operator()() const { return esp_random(); }
double entropy() const { return 1.; }
static result_type min() { return std::numeric_limits<result_type>::min(); }
static result_type max() { return std::numeric_limits<result_type>::max(); }
static constexpr result_type min() { return std::numeric_limits<result_type>::min(); }
static constexpr result_type max() { return std::numeric_limits<result_type>::max(); }
};
} // namespace espcpputils