fix(iterator): fix CReferenceable being mistakenly written as CReference

This commit is contained in:
2024-12-14 14:12:07 +08:00
parent 5cfde63dd4
commit c73fc7620d
4 changed files with 5 additions and 5 deletions

View File

@@ -28,7 +28,7 @@ concept CBidirectionalIterator = CForwardIterator<I>
* 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 <CReference T>
template <CReferenceable T>
struct IBidirectionalIterator /* : IForwardIterator<T> */
{
// ~Begin CForwardIterator.