Link CMapArea

This commit is contained in:
2025-05-23 15:41:54 -07:00
parent 3f0beee367
commit 0ff1efc8d2
3 changed files with 352 additions and 352 deletions

View File

@@ -34,7 +34,7 @@ void __advance(It& it, S count, forward_iterator_tag) {
template < typename It, typename S >
void advance(It& it, S count) {
return __advance(it, count, typename It::iterator_category());
__advance(it, count, typename It::iterator_category());
}
} // namespace rstl