diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-06-22 18:32:12 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-06-22 18:32:33 +0300 |
commit | 5b89cf209c3fb184a917355e12f589c83e9ad28f (patch) | |
tree | 93f6acee315c8813494b2fd1b038add89c716d43 /web/apache/service.hxx | |
parent | 98fd9c8729081139a9942d5f4e8adf2d1754f330 (diff) |
Use uncaught_exceptions() if available
C++17 deprecated uncaught_exception() and GCC 8 now issues a warning.
Diffstat (limited to 'web/apache/service.hxx')
-rw-r--r-- | web/apache/service.hxx | 3 |
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, - ®ister_hooks<M> + ®ister_hooks<M>, + AP_MODULE_FLAG_NONE }, name_ (name), exemplar_ (exemplar) |