Build fails with gcc due to a missing standard header
ScalePlayer.cpp uses std::reverse but does not include in its header file
Some environments with precompiled headers may compile successfully but gcc requires the explicit include.
adding header to ScalePlayer.h fixes the compilation
#include <algorithm>
Build fails with gcc due to a missing standard header
ScalePlayer.cpp uses std::reverse but does not include in its header file
Some environments with precompiled headers may compile successfully but gcc requires the explicit include.
adding header to ScalePlayer.h fixes the compilation
#include <algorithm>