From 9af476c353bc5d41901e88fee2866ec84fbcf825 Mon Sep 17 00:00:00 2001 From: Christopher Lackner Date: Mon, 20 Apr 2020 10:26:17 +0200 Subject: [PATCH] template shouldn't have NGCORE_API --- libsrc/core/utils.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/core/utils.hpp b/libsrc/core/utils.hpp index 8dd5c531..81b0073f 100644 --- a/libsrc/core/utils.hpp +++ b/libsrc/core/utils.hpp @@ -24,7 +24,7 @@ namespace ngcore NGCORE_API std::string Demangle(const char* typeinfo); template - NGCORE_API std::string GetName(const T& obj) + std::string GetName(const T& obj) { return Demangle(typeid(obj).name()); } #if defined(__GNUC__)