src/simpl/base.cpp: In member function ‘void simpl::Frame::audio(simpl::sample*, int)’:
/src/simpl/base.cpp:357:14: error: ‘rotate’ is not a member of ‘std’
std::rotate(_audio, _audio + size, _audio + _size);
^~~~~~
src/simpl/base.cpp:357:14: note: suggested alternative: ‘negate’
std::rotate(_audio, _audio + size, _audio + _size);
^~~~~~
negate
It was fixed after I added #include <algorithm> in base.cpp file
I received an error
It was fixed after I added
#include <algorithm>
in base.cpp file