From 5b89cf209c3fb184a917355e12f589c83e9ad28f Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 22 Jun 2018 18:32:12 +0300 Subject: Use uncaught_exceptions() if available C++17 deprecated uncaught_exception() and GCC 8 now issues a warning. --- web/apache/service.hxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'web') diff --git a/web/apache/service.hxx b/web/apache/service.hxx index 28c789e..f5155ef 100644 --- a/web/apache/service.hxx +++ b/web/apache/service.hxx @@ -55,7 +55,8 @@ namespace web nullptr, nullptr, nullptr, - ®ister_hooks + ®ister_hooks, + AP_MODULE_FLAG_NONE }, name_ (name), exemplar_ (exemplar) -- cgit v1.1