From e637b18b98dc3cf86317e9cd2f98ef6871c6b48a Mon Sep 17 00:00:00 2001 From: Dimitar Dobrev Date: Thu, 19 Nov 2020 00:12:23 +0200 Subject: [PATCH] Export some neglected classes in the tests Signed-off-by: Dimitar Dobrev --- tests/CSharp/CSharp.h | 2 +- tests/CSharp/CSharpTemplates.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/CSharp/CSharp.h b/tests/CSharp/CSharp.h index b1ce416e..44a046f7 100644 --- a/tests/CSharp/CSharp.h +++ b/tests/CSharp/CSharp.h @@ -893,7 +893,7 @@ TemplateWithDependentField::TemplateWithDependentField() { } -class DerivesFromTemplateInstantiation : public TemplateWithDependentField +class DLL_API DerivesFromTemplateInstantiation : public TemplateWithDependentField { public: DerivesFromTemplateInstantiation(); diff --git a/tests/CSharp/CSharpTemplates.h b/tests/CSharp/CSharpTemplates.h index 8a147c79..85d49d21 100644 --- a/tests/CSharp/CSharpTemplates.h +++ b/tests/CSharp/CSharpTemplates.h @@ -423,7 +423,7 @@ DerivesFromTemplateWithExplicitSpecialization::~DerivesFromTemplateWithExp { } -class DerivesFromExplicitSpecialization : public DerivesFromTemplateWithExplicitSpecialization +class DLL_API DerivesFromExplicitSpecialization : public DerivesFromTemplateWithExplicitSpecialization { public: DerivesFromExplicitSpecialization();