template shouldn't have NGCORE_API

This commit is contained in:
Christopher Lackner 2020-04-20 10:26:17 +02:00
parent 27baa178d2
commit 9af476c353

View File

@ -24,7 +24,7 @@ namespace ngcore
NGCORE_API std::string Demangle(const char* typeinfo);
template<typename T>
NGCORE_API std::string GetName(const T& obj)
std::string GetName(const T& obj)
{ return Demangle(typeid(obj).name()); }
#if defined(__GNUC__)