From 4658e34f05335e220bf80478958dd3c860b10ec7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20Sch=C3=B6berl?= Date: Fri, 29 Nov 2019 15:26:20 +0000 Subject: [PATCH] Revert "api" This reverts commit 3207ab1d99813521f3554b1d9332e9892781c858 --- 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 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;