From 16c227e27c9f66b01c24dbf122a397f3df35c586 Mon Sep 17 00:00:00 2001 From: Malcolm Tyrrell Date: Thu, 20 Aug 2020 14:53:00 +0100 Subject: [PATCH] Undo one other small change. --- include/assimp/Exceptional.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/assimp/Exceptional.h b/include/assimp/Exceptional.h index 0704d0bbc..0228258b3 100644 --- a/include/assimp/Exceptional.h +++ b/include/assimp/Exceptional.h @@ -56,7 +56,7 @@ using std::runtime_error; #pragma warning(disable : 4275) #endif -class ASSIMP_API DeadlyErrorBase : public runtime_error { +class DeadlyErrorBase : public runtime_error { protected: DeadlyErrorBase(Assimp::Formatter::format f); @@ -145,7 +145,7 @@ struct ExceptionSwallower { return ExceptionSwallower()(); \ } \ catch (...) { \ - ASSIMP_END_EXCEPTION_REGION_errorString = "Internal error"; \ + ASSIMP_END_EXCEPTION_REGION_errorString = "Unknown exception"; \ ASSIMP_END_EXCEPTION_REGION_exception = std::current_exception(); \ return ExceptionSwallower()(); \ } \