From 3207ab1d99813521f3554b1d9332e9892781c858 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20Sch=C3=B6berl?= Date: Fri, 29 Nov 2019 15:02:37 +0100 Subject: [PATCH] api --- libsrc/core/exception.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/core/exception.hpp b/libsrc/core/exception.hpp index bfec7a75..65925dcf 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; - Exception(const std::string& s); // : m_what(s) {} - Exception(const char* s); // : m_what(s) {} + NGCORE_API Exception(const std::string& s); // : m_what(s) {} + NGCORE_API Exception(const char* s); // : m_what(s) {} ~Exception() override = default; Exception& operator =(const Exception&) = default;