TaskScheduler icon indicating copy to clipboard operation
TaskScheduler copied to clipboard

Compiler warning: 'uint32_t _task_micros()' defined but not used

Open numericOverflow opened this issue 2 years ago • 0 comments

When using this library using Visual Studio Code, the compiler throws a warning about one of the functions:

Compiling .pio\build\nodemcuv2\src\main.master.cpp.o In file included from src\main.master.cpp:117: .pio\libdeps\nodemcuv2\TaskScheduler\src/TaskScheduler.h:280:17: warning: 'uint32_t _task_micros()' defined but not used [-Wunused-function] 280 | static uint32_t _task_micros() {return micros();} | ^~~~~~~~~~~~

2021-12-31_112549

It looks like there's a PR to fix, can you look into fixing this issue?

I'm using the latest TaskScheduler lib version as of today (v3.6.0)

numericOverflow avatar Dec 31 '21 17:12 numericOverflow