diff options
author | Chris Packham <judge.packham@gmail.com> | 2023-09-24 17:08:06 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-10-04 16:11:42 +1300 |
commit | 591a04186547470ead163f955bc39ef9c87348c6 (patch) | |
tree | 9a34243416a72edfc5d2c5c8243455495b8709c4 /packages/duma/2_5_15/0003-cpp17_throw.patch | |
parent | 517584a114851dec126058fef7765cdd22978f94 (diff) | |
download | crosstool-ng-591a04186547470ead163f955bc39ef9c87348c6.tar.gz crosstool-ng-591a04186547470ead163f955bc39ef9c87348c6.tar.bz2 crosstool-ng-591a04186547470ead163f955bc39ef9c87348c6.zip |
duma: Drop 2_5_15
Drop duma 2_5_15 which was marked as obsolete in the last release.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'packages/duma/2_5_15/0003-cpp17_throw.patch')
-rw-r--r-- | packages/duma/2_5_15/0003-cpp17_throw.patch | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/packages/duma/2_5_15/0003-cpp17_throw.patch b/packages/duma/2_5_15/0003-cpp17_throw.patch deleted file mode 100644 index f468c5db..00000000 --- a/packages/duma/2_5_15/0003-cpp17_throw.patch +++ /dev/null @@ -1,73 +0,0 @@ ---- - testoperators.cpp | 16 ++++++++-------- - 1 file changed, 8 insertions(+), 8 deletions(-) - ---- a/testoperators.cpp -+++ b/testoperators.cpp -@@ -37,26 +37,26 @@ - { - public: - /* 1x : SINGLE OBJECT FORM - NO DEBUG INFORMATION */ -- void * operator new( DUMA_SIZE_T ) throw(std::bad_alloc); -+ void * operator new( DUMA_SIZE_T ) NEW_THROW_SPEC; - void * operator new( DUMA_SIZE_T , const std::nothrow_t & ) throw(); - void operator delete( void * ) throw(); - void operator delete( void * , const std::nothrow_t & ) throw(); - - /* 2x : ARRAY OBJECT FORM - NO DEBUG INFORMATION */ -- void * operator new[]( DUMA_SIZE_T ) throw(std::bad_alloc); -+ void * operator new[]( DUMA_SIZE_T ) NEW_THROW_SPEC; - void * operator new[]( DUMA_SIZE_T , const std::nothrow_t & ) throw(); - void operator delete[]( void * ) throw(); - void operator delete[]( void *, const std::nothrow_t & ) throw(); - - #ifndef DUMA_NO_LEAKDETECTION - /* 3x : SINGLE OBJECT FORM - WITH DEBUG INFORMATION */ -- void * operator new( DUMA_SIZE_T, const char *, int ) throw( std::bad_alloc ); -+ void * operator new( DUMA_SIZE_T, const char *, int ) NEW_THROW_SPEC; - void * operator new( DUMA_SIZE_T, const std::nothrow_t &, const char *, int ) throw(); - void operator delete( void *, const char *, int ) throw(); - void operator delete( void *, const std::nothrow_t &, const char *, int ) throw(); - - /* 4x : ARRAY OBJECT FORM - WITH DEBUG INFORMATION */ -- void * operator new[]( DUMA_SIZE_T, const char *, int ) throw( std::bad_alloc ); -+ void * operator new[]( DUMA_SIZE_T, const char *, int ) NEW_THROW_SPEC; - void * operator new[]( DUMA_SIZE_T, const std::nothrow_t &, const char *, int ) throw(); - void operator delete[]( void *, const char *, int ) throw(); - void operator delete[]( void *, const std::nothrow_t &, const char *, int ) throw(); -@@ -70,7 +70,7 @@ - /* 1x : SINGLE OBJECT FORM - NO DEBUG INFORMATION */ - - void * optest::operator new( DUMA_SIZE_T s ) --throw(std::bad_alloc) -+NEW_THROW_SPEC - { - (void)s; - return ::new optest; -@@ -101,7 +101,7 @@ - - /* 2x : ARRAY OBJECT FORM - NO DEBUG INFORMATION */ - void * optest::operator new[]( DUMA_SIZE_T s ) --throw(std::bad_alloc) -+NEW_THROW_SPEC - { - return ::new optest[ s / sizeof(optest) ]; // "s / sizeof()" not correct but works for this test - } -@@ -129,7 +129,7 @@ - - /* 3x : SINGLE OBJECT FORM - WITH DEBUG INFORMATION */ - void * optest::operator new( DUMA_SIZE_T s, const char * f, int l ) --throw( std::bad_alloc ) -+NEW_THROW_SPEC - { - (void)s; - return ::new(f,l) optest; -@@ -157,7 +157,7 @@ - - /* 4x : ARRAY OBJECT FORM - WITH DEBUG INFORMATION */ - void * optest::operator new[]( DUMA_SIZE_T s, const char * f, int l ) --throw( std::bad_alloc ) -+NEW_THROW_SPEC - { - return ::new(f,l) optest[s / sizeof(optest)]; // "s / sizeof()" not correct but works for this test - } |