From: Richard Kreckel Date: Fri, 6 Nov 2015 00:00:55 +0000 (+0100) Subject: Replace dynamic throw() with static noexcept operator. X-Git-Tag: release_1-7-0~7^2~64 X-Git-Url: https://www.ginac.de/ginac.git/static/gitweb.css/ginac.git?a=commitdiff_plain;h=69f9dc042d1d10fff1fc9cc9a5c64a6f8ebd10be;p=ginac.git Replace dynamic throw() with static noexcept operator. --- diff --git a/ginac/ex.h b/ginac/ex.h index 0bf63a0d..e27abe50 100644 --- a/ginac/ex.h +++ b/ginac/ex.h @@ -77,7 +77,7 @@ class ex { // default constructor, copy constructor and assignment operator public: - ex() throw(); + ex() noexcept; // other constructors public: @@ -98,7 +98,7 @@ public: // non-virtual functions in this class public: /** Efficiently swap the contents of two expressions. */ - void swap(ex & other) throw() + void swap(ex & other) noexcept { GINAC_ASSERT(bp->flags & status_flags::dynallocated); GINAC_ASSERT(other.bp->flags & status_flags::dynallocated); @@ -106,12 +106,12 @@ public: } // iterators - const_iterator begin() const throw(); - const_iterator end() const throw(); + const_iterator begin() const noexcept; + const_iterator end() const noexcept; const_preorder_iterator preorder_begin() const; - const_preorder_iterator preorder_end() const throw(); + const_preorder_iterator preorder_end() const noexcept; const_postorder_iterator postorder_begin() const; - const_postorder_iterator postorder_end() const throw(); + const_postorder_iterator postorder_end() const noexcept; // evaluation ex eval(int level = 0) const { return bp->eval(level); } @@ -256,7 +256,7 @@ private: extern const basic *_num0_bp; inline -ex::ex() throw() : bp(*const_cast(_num0_bp)) +ex::ex() noexcept : bp(*const_cast(_num0_bp)) { GINAC_ASSERT(bp->flags & status_flags::dynallocated); } @@ -358,10 +358,10 @@ class const_iterator : public std::iterator(const const_iterator &other) const throw() + bool operator>(const const_iterator &other) const noexcept { return other < *this; } - bool operator<=(const const_iterator &other) const throw() + bool operator<=(const const_iterator &other) const noexcept { return !(other < *this); } - bool operator>=(const const_iterator &other) const throw() + bool operator>=(const const_iterator &other) const noexcept { return !(*this < other); } @@ -481,12 +481,12 @@ namespace internal { struct _iter_rep { _iter_rep(const ex &e_, size_t i_, size_t i_end_) : e(e_), i(i_), i_end(i_end_) {} - bool operator==(const _iter_rep &other) const throw() + bool operator==(const _iter_rep &other) const noexcept { return are_ex_trivially_equal(e, other.e) && i == other.i; } - bool operator!=(const _iter_rep &other) const throw() + bool operator!=(const _iter_rep &other) const noexcept { return !(*this == other); } @@ -500,7 +500,7 @@ struct _iter_rep { class const_preorder_iterator : public std::iterator { public: - const_preorder_iterator() throw() {} + const_preorder_iterator() noexcept {} const_preorder_iterator(const ex &e, size_t n) { @@ -531,12 +531,12 @@ public: return tmp; } - bool operator==(const const_preorder_iterator &other) const throw() + bool operator==(const const_preorder_iterator &other) const noexcept { return s == other.s; } - bool operator!=(const const_preorder_iterator &other) const throw() + bool operator!=(const const_preorder_iterator &other) const noexcept { return !(*this == other); } @@ -564,7 +564,7 @@ private: class const_postorder_iterator : public std::iterator { public: - const_postorder_iterator() throw() {} + const_postorder_iterator() noexcept {} const_postorder_iterator(const ex &e, size_t n) { @@ -596,12 +596,12 @@ public: return tmp; } - bool operator==(const const_postorder_iterator &other) const throw() + bool operator==(const const_postorder_iterator &other) const noexcept { return s == other.s; } - bool operator!=(const const_postorder_iterator &other) const throw() + bool operator!=(const const_postorder_iterator &other) const noexcept { return !(*this == other); } @@ -629,12 +629,12 @@ private: } }; -inline const_iterator ex::begin() const throw() +inline const_iterator ex::begin() const noexcept { return const_iterator(*this, 0); } -inline const_iterator ex::end() const throw() +inline const_iterator ex::end() const noexcept { return const_iterator(*this, nops()); } @@ -644,7 +644,7 @@ inline const_preorder_iterator ex::preorder_begin() const return const_preorder_iterator(*this, nops()); } -inline const_preorder_iterator ex::preorder_end() const throw() +inline const_preorder_iterator ex::preorder_end() const noexcept { return const_preorder_iterator(); } @@ -654,7 +654,7 @@ inline const_postorder_iterator ex::postorder_begin() const return const_postorder_iterator(*this, nops()); } -inline const_postorder_iterator ex::postorder_end() const throw() +inline const_postorder_iterator ex::postorder_end() const noexcept { return const_postorder_iterator(); } diff --git a/ginac/ptr.h b/ginac/ptr.h index c5316cc0..5911dd67 100644 --- a/ginac/ptr.h +++ b/ginac/ptr.h @@ -34,12 +34,12 @@ namespace GiNaC { /** Base class for reference-counted objects. */ class refcounted { public: - refcounted() throw() : refcount(0) {} + refcounted() noexcept : refcount(0) {} - unsigned int add_reference() throw() { return ++refcount; } - unsigned int remove_reference() throw() { return --refcount; } - unsigned int get_refcount() const throw() { return refcount; } - void set_refcount(unsigned int r) throw() { refcount = r; } + unsigned int add_reference() noexcept { return ++refcount; } + unsigned int remove_reference() noexcept { return --refcount; } + unsigned int get_refcount() const noexcept { return refcount; } + void set_refcount(unsigned int r) noexcept { refcount = r; } private: unsigned int refcount; ///< reference counter @@ -64,12 +64,12 @@ public: // no default ctor: a ptr is never unbound /** Bind ptr to newly created object, start reference counting. */ - ptr(T *t) throw() : p(t) { GINAC_ASSERT(p); p->set_refcount(1); } + ptr(T *t) noexcept : p(t) { GINAC_ASSERT(p); p->set_refcount(1); } /** Bind ptr to existing reference-counted object. */ - explicit ptr(T &t) throw() : p(&t) { p->add_reference(); } + explicit ptr(T &t) noexcept : p(&t) { p->add_reference(); } - ptr(const ptr & other) throw() : p(other.p) { p->add_reference(); } + ptr(const ptr & other) noexcept : p(other.p) { p->add_reference(); } ~ptr() { @@ -90,10 +90,10 @@ public: return *this; } - T &operator*() const throw() { return *p; } - T *operator->() const throw() { return p; } + T &operator*() const noexcept { return *p; } + T *operator->() const noexcept { return p; } - friend inline T *get_pointer(const ptr & x) throw() { return x.p; } + friend inline T *get_pointer(const ptr & x) noexcept { return x.p; } /** Announce your intention to modify the object bound to this ptr. * This ensures that the object is not shared by any other ptrs. */ @@ -108,7 +108,7 @@ public: } /** Swap the bound object of this ptr with another ptr. */ - void swap(ptr & other) throw() + void swap(ptr & other) noexcept { T *t = p; p = other.p; @@ -121,22 +121,22 @@ public: // to different (probably derived) types and raw pointers. template - bool operator==(const ptr & rhs) const throw() { return p == get_pointer(rhs); } + bool operator==(const ptr & rhs) const noexcept { return p == get_pointer(rhs); } template - bool operator!=(const ptr & rhs) const throw() { return p != get_pointer(rhs); } + bool operator!=(const ptr & rhs) const noexcept { return p != get_pointer(rhs); } template - inline friend bool operator==(const ptr & lhs, const U * rhs) throw() { return lhs.p == rhs; } + inline friend bool operator==(const ptr & lhs, const U * rhs) noexcept { return lhs.p == rhs; } template - inline friend bool operator!=(const ptr & lhs, const U * rhs) throw() { return lhs.p != rhs; } + inline friend bool operator!=(const ptr & lhs, const U * rhs) noexcept { return lhs.p != rhs; } template - inline friend bool operator==(const U * lhs, const ptr & rhs) throw() { return lhs == rhs.p; } + inline friend bool operator==(const U * lhs, const ptr & rhs) noexcept { return lhs == rhs.p; } template - inline friend bool operator!=(const U * lhs, const ptr & rhs) throw() { return lhs != rhs.p; } + inline friend bool operator!=(const U * lhs, const ptr & rhs) noexcept { return lhs != rhs.p; } inline friend std::ostream & operator<<(std::ostream & os, const ptr & rhs) {