From 3ae46c98e06a044d6fea38eb6ae8d2d1ed6c7f61 Mon Sep 17 00:00:00 2001 From: Pagwin Date: Wed, 10 Apr 2024 08:04:07 -0400 Subject: [PATCH] minor fix for repeat --- include/pit/iters.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pit/iters.h b/include/pit/iters.h index cf23dda..6e90391 100644 --- a/include/pit/iters.h +++ b/include/pit/iters.h @@ -49,7 +49,7 @@ namespace pit{ repeat operator-(std::size_t ){} void operator+=(std::size_t ){} void operator-=(std::size_t ){} - bool operator==(repeat const& rhs){return true;} + bool operator==(repeat const& rhs){return false;} T const& operator*(){ return this->val; }