From c73fc7620d1dbe4bc8a79d908d394d02d6bd5fde Mon Sep 17 00:00:00 2001 From: Redstone1024 <2824517378@qq.com> Date: Sat, 14 Dec 2024 14:12:07 +0800 Subject: [PATCH] fix(iterator): fix CReferenceable being mistakenly written as CReference --- .../Source/Public/Iterator/BidirectionalIterator.h | 2 +- Redcraft.Utility/Source/Public/Iterator/ForwardIterator.h | 2 +- .../Source/Public/Iterator/RandomAccessIterator.h | 2 +- Redcraft.Utility/Source/Public/Iterator/Utility.h | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Redcraft.Utility/Source/Public/Iterator/BidirectionalIterator.h b/Redcraft.Utility/Source/Public/Iterator/BidirectionalIterator.h index 7f7231d..1c08f52 100644 --- a/Redcraft.Utility/Source/Public/Iterator/BidirectionalIterator.h +++ b/Redcraft.Utility/Source/Public/Iterator/BidirectionalIterator.h @@ -28,7 +28,7 @@ concept CBidirectionalIterator = CForwardIterator * Regardless of the order in which the increment and decrement operators are applied, * the result is always the same if both operations are performed the same number of times. */ -template +template struct IBidirectionalIterator /* : IForwardIterator */ { // ~Begin CForwardIterator. diff --git a/Redcraft.Utility/Source/Public/Iterator/ForwardIterator.h b/Redcraft.Utility/Source/Public/Iterator/ForwardIterator.h index 4688afe..0ea46a6 100644 --- a/Redcraft.Utility/Source/Public/Iterator/ForwardIterator.h +++ b/Redcraft.Utility/Source/Public/Iterator/ForwardIterator.h @@ -19,7 +19,7 @@ template concept CForwardIterator = CInputIterator && CIncrementable && CSentinelFor; /** This is an example of a forward iterator, indicate the traits that define a forward iterator. */ -template +template struct IForwardIterator /* : IInputIterator, IIncrementable, ISentinelFor */ { // ~Begin CInputIterator. diff --git a/Redcraft.Utility/Source/Public/Iterator/RandomAccessIterator.h b/Redcraft.Utility/Source/Public/Iterator/RandomAccessIterator.h index 2795202..e51308e 100644 --- a/Redcraft.Utility/Source/Public/Iterator/RandomAccessIterator.h +++ b/Redcraft.Utility/Source/Public/Iterator/RandomAccessIterator.h @@ -32,7 +32,7 @@ concept CRandomAccessIterator = CBidirectionalIterator && CTotallyOrdered }; /** This is an example of a random access iterator, indicate the traits that define a random access iterator. */ -template +template struct IRandomAccessIterator /* : IBidirectionalIterator, ISizedSentinelFor */ { // ~Begin CBidirectionalIterator. diff --git a/Redcraft.Utility/Source/Public/Iterator/Utility.h b/Redcraft.Utility/Source/Public/Iterator/Utility.h index 5a26064..9c579ad 100644 --- a/Redcraft.Utility/Source/Public/Iterator/Utility.h +++ b/Redcraft.Utility/Source/Public/Iterator/Utility.h @@ -107,7 +107,7 @@ concept CIndirectlyWritable = }; /** This is an example of an indirectly writable type, indicate the traits that define an indirectly writable type. */ -template +template struct IIndirectlyWritable { /** @@ -262,7 +262,7 @@ concept COutputIterator = CInputOrOutputIterator && CIndirectlyWritable && requires(I Iter) { { Iter++ } -> CIndirectlyWritable; }; /** This is an example of an output iterator, indicate the traits that define an output iterator. */ -template +template struct IOutputIterator /* : IInputOrOutputIterator, IIndirectlyWritable */ { // ~Begin CIndirectlyWritable.