File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ class SOURCEMETA_CORE_URI_EXPORT URI {
61
61
URI (const URI &other);
62
62
63
63
// / Move constructor
64
- URI (URI &&other);
64
+ URI (URI &&other) noexcept ;
65
65
66
66
// / Check if the URI is absolute. For example:
67
67
// /
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ URI::~URI() { uriFreeUriMembersA(&this->internal->uri); }
138
138
// TODO: Test the copy constructor
139
139
URI::URI (const URI &other) : URI{other.recompose ()} {}
140
140
141
- URI::URI (URI &&other)
141
+ URI::URI (URI &&other) noexcept
142
142
: parsed{other.parsed }, data{std::move (other.data )},
143
143
path_{std::move (other.path_ )}, userinfo_{std::move (other.userinfo_ )},
144
144
host_{std::move (other.host_ )}, port_{other.port_ },
You can’t perform that action at this time.
0 commit comments