From 179a6e0ccadb521fc97143b2bbfffafc71f34a82 Mon Sep 17 00:00:00 2001 From: Vitaly Tuzov Date: Wed, 30 Nov 2016 11:25:45 +0300 Subject: [PATCH] OpenVX wrappers linkage fix --- 3rdparty/openvx/include/ivx.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty/openvx/include/ivx.hpp b/3rdparty/openvx/include/ivx.hpp index f47831d1c8..b01731c0e1 100644 --- a/3rdparty/openvx/include/ivx.hpp +++ b/3rdparty/openvx/include/ivx.hpp @@ -2151,7 +2151,7 @@ public: namespace nodes { /// Creates a Gaussian Filter 3x3 Node (vxGaussian3x3Node) -Node gaussian3x3(vx_graph graph, vx_image inImg, vx_image outImg) +inline Node gaussian3x3(vx_graph graph, vx_image inImg, vx_image outImg) { return Node(vxGaussian3x3Node(graph, inImg, outImg)); } } // namespace nodes -- GitLab