minor fix for repeat

This commit is contained in:
Pagwin 2024-04-10 08:04:07 -04:00
parent 382e7f6354
commit 3ae46c98e0

View file

@ -49,7 +49,7 @@ namespace pit{
repeat<T> 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;
}