Closed Chiraffollo closed 6 months ago
In algorithm.h the rotate_general method uses std::advance and std::distance from <iterator>. But these are only available if ETL_USING_STL is set.
rotate_general
std::advance
std::distance
<iterator>
ETL_USING_STL
This is being addressed in PR #895
In algorithm.h the
rotate_general
method usesstd::advance
andstd::distance
from<iterator>
. But these are only available ifETL_USING_STL
is set.