This is an automated email from the ASF dual-hosted git repository.

drdub pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/uima-uimacpp.git

commit b50a6091a270af905d7e50cde1939d524185f071
Author: Pablo Duboue <[email protected]>
AuthorDate: Thu Jan 5 06:47:21 2023 -0800

    throw() was removed in C++17
---
 src/framework/uima/configure.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/framework/uima/configure.h b/src/framework/uima/configure.h
index 98a3ff2..becd32c 100644
--- a/src/framework/uima/configure.h
+++ b/src/framework/uima/configure.h
@@ -62,8 +62,8 @@
 #  error Code requires port to host OS!
 #endif
 
-#define UIMA_THROW0()           throw()
-#define UIMA_THROW(x1)          throw(x1)
+#define UIMA_THROW0()           noexcept(true)
+#define UIMA_THROW(x1)          noexcept(false)
 
 
 #ifdef __cplusplus

Reply via email to