diff options
Diffstat (limited to 'meta-networking/recipes-daemons/squid/files/0001-SquidNew-use-noexcept-instead-of-throw-for-C-11-comp.patch')
-rw-r--r-- | meta-networking/recipes-daemons/squid/files/0001-SquidNew-use-noexcept-instead-of-throw-for-C-11-comp.patch | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/meta-networking/recipes-daemons/squid/files/0001-SquidNew-use-noexcept-instead-of-throw-for-C-11-comp.patch b/meta-networking/recipes-daemons/squid/files/0001-SquidNew-use-noexcept-instead-of-throw-for-C-11-comp.patch index 48674c3c57..f482f80885 100644 --- a/meta-networking/recipes-daemons/squid/files/0001-SquidNew-use-noexcept-instead-of-throw-for-C-11-comp.patch +++ b/meta-networking/recipes-daemons/squid/files/0001-SquidNew-use-noexcept-instead-of-throw-for-C-11-comp.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From f9150a0dc092ab2cbd47ee428436b747dce323a9 Mon Sep 17 00:00:00 2001 | 1 | From 27e10667bf27baf5f119a791e3473bb9435a786a Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Sun, 23 Apr 2017 10:28:28 -0700 | 3 | Date: Sun, 23 Apr 2017 10:28:28 -0700 |
4 | Subject: [PATCH] SquidNew: use noexcept instead of throw for C++11 compilers | 4 | Subject: [PATCH] SquidNew: use noexcept instead of throw for C++11 compilers |
@@ -11,6 +11,7 @@ _SQUID_EXTERNNEW_ void *operator new[] (size_t size) throw (std::bad_alloc) | |||
11 | ^~~~~ | 11 | ^~~~~ |
12 | 12 | ||
13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | 13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
14 | |||
14 | --- | 15 | --- |
15 | include/SquidNew.h | 8 ++++---- | 16 | include/SquidNew.h | 8 ++++---- |
16 | 1 file changed, 4 insertions(+), 4 deletions(-) | 17 | 1 file changed, 4 insertions(+), 4 deletions(-) |
@@ -43,6 +44,3 @@ index 39fcee0..c960347 100644 | |||
43 | { | 44 | { |
44 | xfree(address); | 45 | xfree(address); |
45 | } | 46 | } |
46 | -- | ||
47 | 2.12.2 | ||
48 | |||