diff options
| author | practicalswift <[email protected]> | 2017-07-31 19:44:01 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-07-31 19:44:01 +0200 |
| commit | 98625502607dd9180ab6840b832dc89986d0b150 (patch) | |
| tree | b2ad13123c4dc83d66fe20184e76a98c10cc2e06 /src/support/allocators | |
| parent | qt: Periodic translations update (diff) | |
| download | discoin-98625502607dd9180ab6840b832dc89986d0b150.tar.xz discoin-98625502607dd9180ab6840b832dc89986d0b150.zip | |
Use the noexcept specifier (C++11) instead of deprecated throw()
Diffstat (limited to 'src/support/allocators')
| -rw-r--r-- | src/support/allocators/secure.h | 8 | ||||
| -rw-r--r-- | src/support/allocators/zeroafterfree.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/support/allocators/secure.h b/src/support/allocators/secure.h index 9daba86ef..961dd422e 100644 --- a/src/support/allocators/secure.h +++ b/src/support/allocators/secure.h @@ -26,13 +26,13 @@ struct secure_allocator : public std::allocator<T> { typedef typename base::reference reference; typedef typename base::const_reference const_reference; typedef typename base::value_type value_type; - secure_allocator() throw() {} - secure_allocator(const secure_allocator& a) throw() : base(a) {} + secure_allocator() noexcept {} + secure_allocator(const secure_allocator& a) noexcept : base(a) {} template <typename U> - secure_allocator(const secure_allocator<U>& a) throw() : base(a) + secure_allocator(const secure_allocator<U>& a) noexcept : base(a) { } - ~secure_allocator() throw() {} + ~secure_allocator() noexcept {} template <typename _Other> struct rebind { typedef secure_allocator<_Other> other; diff --git a/src/support/allocators/zeroafterfree.h b/src/support/allocators/zeroafterfree.h index 28a940ad1..c740faf37 100644 --- a/src/support/allocators/zeroafterfree.h +++ b/src/support/allocators/zeroafterfree.h @@ -22,13 +22,13 @@ struct zero_after_free_allocator : public std::allocator<T> { typedef typename base::reference reference; typedef typename base::const_reference const_reference; typedef typename base::value_type value_type; - zero_after_free_allocator() throw() {} - zero_after_free_allocator(const zero_after_free_allocator& a) throw() : base(a) {} + zero_after_free_allocator() noexcept {} + zero_after_free_allocator(const zero_after_free_allocator& a) noexcept : base(a) {} template <typename U> - zero_after_free_allocator(const zero_after_free_allocator<U>& a) throw() : base(a) + zero_after_free_allocator(const zero_after_free_allocator<U>& a) noexcept : base(a) { } - ~zero_after_free_allocator() throw() {} + ~zero_after_free_allocator() noexcept {} template <typename _Other> struct rebind { typedef zero_after_free_allocator<_Other> other; |