blob: f10dca09d673a721e890543473b3619a697d7313 [file] [log] [blame]
Andrew Geissler90fd73c2021-03-05 15:25:55 -06001From 9a8f1d73e7b7e183768a8379ef32429a84f0e5c2 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 26 Feb 2021 18:11:56 -0800
4Subject: [PATCH] libev: remove deprecated throw specification
5
6removes the throw specifications that are deprecated since C++11:
7warning: dynamic exception specifications are deprecated in C++11 [-Wdeprecated]
8
9Upstream-Status: Pending
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 libev/ev++.h | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/libev/ev++.h b/libev/ev++.h
16index 4f0a36a..85ddf44 100644
17--- a/libev/ev++.h
18+++ b/libev/ev++.h
19@@ -376,7 +376,7 @@ namespace ev {
20
21 struct default_loop : loop_ref
22 {
23- default_loop (unsigned int flags = AUTO) throw (bad_loop)
24+ default_loop (unsigned int flags = AUTO)
25 #if EV_MULTIPLICITY
26 : loop_ref (ev_default_loop (flags))
27 #endif
28--
292.30.1
30