Add CStateManager area_sorter

This commit is contained in:
Henrique Gemignani Passos Lima
2022-11-28 01:26:24 +02:00
parent 26621f44eb
commit 5af3c20f3c
8 changed files with 119 additions and 12 deletions

View File

@@ -21,7 +21,7 @@ typename It::difference_type __distance(It first, It last, forward_iterator_tag)
}
template < typename It >
typename It::difference_type distance(It first, It last) {
inline typename It::difference_type distance(It first, It last) {
return __distance(first, last, typename It::iterator_category());
}