From d1d71f75d602c55d9f9e14d573296716aad4d9c4 Mon Sep 17 00:00:00 2001 From: Marek Roszko <mark.roszko@gmail.com> Date: Tue, 1 Oct 2024 06:55:28 -0400 Subject: [PATCH] Fix typo in jobset.h --- common/jobs/jobset.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/jobs/jobset.h b/common/jobs/jobset.h index 5b54575781..4483e3977e 100644 --- a/common/jobs/jobset.h +++ b/common/jobs/jobset.h @@ -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 \ No newline at end of file