..\SimpleTimer.cpp: In member function 'void SimpleTimer::run()':
..\SimpleTimer.cpp:100:18: error: no match for 'operator*' (operand type is 'timer_callback {aka std::function<void()>}')
        (*callbacks[i])();
         ^
..\SimpleTimer.cpp:104:18: error: no match for 'operator*' (operand type is 'timer_callback {aka std::function<void()>}')
        (*callbacks[i])();
Anyone got any ideas what's going on?
I've attached the library code here
Thanks in advance!
I moved both the .cpp and .h in the code example folder and changed #include <SimpleTimer.h>into#include "SimpleTimer.h" to be sure to use that specific library