File tree 2 files changed +10
-9
lines changed
2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -604,7 +604,7 @@ class IPRangeView {
604
604
storage_type () = default ;
605
605
storage_type (std::monostate) {}
606
606
storage_type (storage_type const &that);
607
- storage_type & operator = (storage_type const & rhs);
607
+ storage_type &operator = (storage_type const & rhs);
608
608
};
609
609
610
610
public:
@@ -1824,9 +1824,10 @@ IPSpace<PAYLOAD>::iterator::operator--(int) -> self_type {
1824
1824
1825
1825
// +++ IPRange +++
1826
1826
1827
- inline IPRangeView::storage_type::storage_type (IPRangeView::storage_type const & that) : _void(that._void) {}
1827
+ inline IPRangeView::storage_type::storage_type (IPRangeView::storage_type const &that) : _void(that._void) {}
1828
1828
1829
- inline IPRangeView::storage_type & IPRangeView::storage_type::operator =(IPRangeView::storage_type const & rhs) {
1829
+ inline IPRangeView::storage_type &
1830
+ IPRangeView::storage_type::operator =(IPRangeView::storage_type const &rhs) {
1830
1831
_void = rhs._void ;
1831
1832
return *this ;
1832
1833
}
Original file line number Diff line number Diff line change @@ -128,13 +128,13 @@ class path {
128
128
self_type &operator =(std::string_view p);
129
129
130
130
// / Assign @a s as the path.
131
- self_type &operator =(std::string const & s);
131
+ self_type &operator =(std::string const & s);
132
132
133
133
// / Move @a s to be the path.
134
- self_type &operator =(std::string && s);
134
+ self_type &operator =(std::string &&s);
135
135
136
136
// / Copy @a s as the path.
137
- self_type &operator =(char const * s);
137
+ self_type &operator =(char const *s);
138
138
139
139
/* * Append or replace path with @a that.
140
140
*
@@ -378,19 +378,19 @@ path::operator=(std::string_view p) {
378
378
}
379
379
380
380
inline path &
381
- path::operator =(std::string const & s) {
381
+ path::operator =(std::string const & s) {
382
382
_path.assign (s);
383
383
return *this ;
384
384
}
385
385
386
386
inline path &
387
- path::operator =(std::string && s) {
387
+ path::operator =(std::string &&s) {
388
388
_path.assign (std::move (s));
389
389
return *this ;
390
390
}
391
391
392
392
inline path &
393
- path::operator =(char const * s) {
393
+ path::operator =(char const *s) {
394
394
_path.assign (s);
395
395
return *this ;
396
396
}
You can’t perform that action at this time.
0 commit comments