@@ -17,16 +17,16 @@ namespace detail {
17
17
class BOOST_SYMBOL_VISIBLE lsp_array_base
18
18
: public local_counted_base {
19
19
public:
20
- void set (sp_counted_base* base) BOOST_SP_NOEXCEPT {
20
+ void set (sp_counted_base* base) noexcept {
21
21
count_ = shared_count (base);
22
22
}
23
23
24
- void local_cb_destroy () BOOST_SP_NOEXCEPT BOOST_OVERRIDE {
24
+ void local_cb_destroy () noexcept BOOST_OVERRIDE {
25
25
shared_count ().swap (count_);
26
26
}
27
27
28
28
shared_count local_cb_get_shared_count () const
29
- BOOST_SP_NOEXCEPT BOOST_OVERRIDE {
29
+ noexcept BOOST_OVERRIDE {
30
30
return count_;
31
31
}
32
32
@@ -39,10 +39,10 @@ class lsp_array_state
39
39
: public sp_array_state<A> {
40
40
public:
41
41
template <class U >
42
- lsp_array_state (const U& other, std::size_t size) BOOST_SP_NOEXCEPT
42
+ lsp_array_state (const U& other, std::size_t size) noexcept
43
43
: sp_array_state<A>(other, size) { }
44
44
45
- lsp_array_base& base () BOOST_SP_NOEXCEPT {
45
+ lsp_array_base& base () noexcept {
46
46
return base_;
47
47
}
48
48
@@ -55,10 +55,10 @@ class lsp_size_array_state
55
55
: public sp_size_array_state<A, N> {
56
56
public:
57
57
template <class U >
58
- lsp_size_array_state (const U& other, std::size_t size) BOOST_SP_NOEXCEPT
58
+ lsp_size_array_state (const U& other, std::size_t size) noexcept
59
59
: sp_size_array_state<A, N>(other, size) { }
60
60
61
- lsp_array_base& base () BOOST_SP_NOEXCEPT {
61
+ lsp_array_base& base () noexcept {
62
62
return base_;
63
63
}
64
64
0 commit comments