You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a quasi-bug in gcc-8 (IIRC) that doesn't properly silence the warning when any of those variables are used. gcc-9 and clang handle it properly.
You can work around it by remove -Werror from CMakeLists.txt; really we should make -Werror a configurable build option.
/myproject/external/loki-mq/oxenmq/jobs.cpp:143:28: error: unused variable ‘queue’ [-Werror=unused-variable]
auto& [run, busy, queue] = tagged_workers.emplace_back();
here i attached the screenshot of the code
the blue line marked in the code
This error accuried while i run the Makefile in the project , How i fix this
The text was updated successfully, but these errors were encountered: