diff --git a/Redcraft.Utility/Source/Public/Iterator/CountedIterator.h b/Redcraft.Utility/Source/Public/Iterator/CountedIterator.h index 827386b..ec5fed9 100644 --- a/Redcraft.Utility/Source/Public/Iterator/CountedIterator.h +++ b/Redcraft.Utility/Source/Public/Iterator/CountedIterator.h @@ -134,7 +134,7 @@ static_assert(CBidirectionalIterator>>); static_assert( CContiguousIterator>>); -//static_assert(COutputIterator>, int>); +static_assert(COutputIterator>, int>); static_assert(CSizedSentinelFor>, TCountedIterator>>); diff --git a/Redcraft.Utility/Source/Public/Range/Utility.h b/Redcraft.Utility/Source/Public/Range/Utility.h index c7b77de..46897ed 100644 --- a/Redcraft.Utility/Source/Public/Range/Utility.h +++ b/Redcraft.Utility/Source/Public/Range/Utility.h @@ -277,12 +277,12 @@ concept CSizedRange = CRange template S = ISizedSentinelFor> struct ISizedRange /* : IRange */ { - // ~Begin CRange + // ~Begin CRange. I Begin() /* const */; S End() /* const */; - // ~End CRange + // ~End CRange. /** * Get the number of elements in the range. @@ -344,12 +344,12 @@ concept CContiguousRange = CRandomAccessRange && CContiguousIterator S = ISentinelFor> struct IContiguousRange /* : IRange */ { - // ~Begin CRange + // ~Begin CRange. I Begin() /* const */; S End() /* const */; - // ~End CRange + // ~End CRange. /** * Get the pointer to the container element storage.