7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-07 17:25:33 +00:00

Fix typo in jobset.h

This commit is contained in:
Marek Roszko 2024-10-01 06:55:28 -04:00
parent d74caace0a
commit d1d71f75d6

View File

@ -102,10 +102,10 @@ KICOMMON_API void from_json( const nlohmann::json& j, JOBSET_OUTPUT& f );
#if defined( __MINGW32__ )
template class KICOMMON_API PARAM_LIST<struct JOBSET_JOB>;
template class KICOMMON_API PARAM_LIST<struct JOBSET_JOB>;
template class KICOMMON_API PARAM_LIST<struct JOBSET_OUTPUT>;
#else
extern template class APIVISIBLE PARAM_LIST<JOBSET_JOB>;
extern template class APIVISIBLE PARAM_LIST<JOBSET_JOB>;
extern template class APIVISIBLE PARAM_LIST<JOBSET_OUTPUT>;
#endif
#endif