Fix build.
--HG-- branch : develop
This commit is contained in:
parent
61edf4d91a
commit
acfd1ac01d
|
@ -168,7 +168,7 @@ inline void Move(T &vector, int from, int to)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
T::iterator b = vector.begin();
|
typename T::iterator b = vector.begin();
|
||||||
from < to ? std::rotate(b + from, b + from + 1, b + to + 1):
|
from < to ? std::rotate(b + from, b + from + 1, b + to + 1):
|
||||||
std::rotate(b + to, b + from, b + from + 1);
|
std::rotate(b + to, b + from, b + from + 1);
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in New Issue
Block a user