From 60b8cdf351e0c2978ee3fb18446bb43ef999bf03 Mon Sep 17 00:00:00 2001 From: dlyr Date: Sun, 25 Sep 2022 16:34:31 +0200 Subject: [PATCH] remove uneeded export api on template --- src/Engine/Data/Mesh.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Engine/Data/Mesh.hpp b/src/Engine/Data/Mesh.hpp index 9b3637001e3..0f36fb80616 100644 --- a/src/Engine/Data/Mesh.hpp +++ b/src/Engine/Data/Mesh.hpp @@ -505,7 +505,7 @@ class RA_ENGINE_API Mesh : public IndexedGeometry /// Each face of the polyhedron (typically quads) are assume to be planar and convex. /// Simple triangulation is performed on the fly before sending data to the GPU. template -class RA_ENGINE_API GeneralMesh : public IndexedGeometry +class GeneralMesh : public IndexedGeometry { using base = IndexedGeometry; using IndexType = Core::Vector3ui;