aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-06-22 18:32:12 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-06-22 18:32:33 +0300
commit5b89cf209c3fb184a917355e12f589c83e9ad28f (patch)
tree93f6acee315c8813494b2fd1b038add89c716d43 /web
parent98fd9c8729081139a9942d5f4e8adf2d1754f330 (diff)
Use uncaught_exceptions() if available
C++17 deprecated uncaught_exception() and GCC 8 now issues a warning.
Diffstat (limited to 'web')
-rw-r--r--web/apache/service.hxx3
1 files changed, 2 insertions, 1 deletions
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,
- &register_hooks<M>
+ &register_hooks<M>,
+ AP_MODULE_FLAG_NONE
},
name_ (name),
exemplar_ (exemplar)