From 43df944eb4221afa508d55f6b2613dc9490053fa Mon Sep 17 00:00:00 2001 From: Dmitry Matveev Date: Wed, 18 Mar 2020 18:55:36 +0300 Subject: [PATCH] Added GAPI_EXPORTS to GIslandExecutable since now it needs to be exported --- modules/gapi/src/compiler/gislandmodel.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/gapi/src/compiler/gislandmodel.hpp b/modules/gapi/src/compiler/gislandmodel.hpp index 975f35abf8..dc230aae27 100644 --- a/modules/gapi/src/compiler/gislandmodel.hpp +++ b/modules/gapi/src/compiler/gislandmodel.hpp @@ -94,7 +94,10 @@ protected: // * Is instantiated by the last step of the Islands fusion procedure; // * Is orchestrated by a GExecutor instance. // -class GIslandExecutable +// GAPI_EXPORTS is here since this class comes with the default +// implementation to some methods and it needs to be exported to allow +// it to use in the external (extra) backends. +class GAPI_EXPORTS GIslandExecutable { public: using InObj = std::pair;