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
In order to be correct and to avoid multiple-definition errors from some linkers, declarations like
const char *task_name[task_COUNT];
actually need to be marked extern as well.
The text was updated successfully, but these errors were encountered:
eschaton
changed the title
The const declarations in "include/cpu.h” need to be extern
The const declarations in "include/cpu.h" need to be extern
Jun 24, 2016
In order to be correct and to avoid multiple-definition errors from some linkers, declarations like
const char *task_name[task_COUNT];
actually need to be marked
extern
as well.The text was updated successfully, but these errors were encountered: