commit f776cfa867c2242981e10cdda405617496ed36ef
parent d1820c6f6c1c39267ae99bc370264e2a75383ec3
Author: ermito <[email protected]>
Date: Tue, 19 Feb 2019 19:36:51 +0300
fix generators usage
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/kfr/base/generators.hpp b/include/kfr/base/generators.hpp
@@ -41,7 +41,7 @@ template <typename T, size_t width_, typename Class>
struct generator : input_expression
{
constexpr static size_t width = width_;
- using type = T;
+ using value_type = T;
constexpr static bool is_incremental = true;