diff --git a/libsrc/core/exception.hpp b/libsrc/core/exception.hpp index 65925dcf..bfec7a75 100644 --- a/libsrc/core/exception.hpp +++ b/libsrc/core/exception.hpp @@ -31,8 +31,8 @@ namespace ngcore Exception() = default; Exception(const Exception&) = default; Exception(Exception&&) = default; - NGCORE_API Exception(const std::string& s); // : m_what(s) {} - NGCORE_API Exception(const char* s); // : m_what(s) {} + Exception(const std::string& s); // : m_what(s) {} + Exception(const char* s); // : m_what(s) {} ~Exception() override = default; Exception& operator =(const Exception&) = default;