File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -211,5 +211,5 @@ namespace web { namespace details
211
211
const utility::char_t **path_begin, const utility::char_t **path_end,
212
212
const utility::char_t **query_begin, const utility::char_t **query_end,
213
213
const utility::char_t **fragment_begin, const utility::char_t **fragment_end);
214
- };
214
+ }
215
215
}}
Original file line number Diff line number Diff line change @@ -128,14 +128,14 @@ web::json::value &web::json::value::operator=(const value &other)
128
128
}
129
129
return *this ;
130
130
}
131
- web::json::value::value (value &&other) :
131
+ web::json::value::value (value &&other) _noexcept :
132
132
m_value(std::move(other.m_value))
133
133
#ifdef ENABLE_JSON_VALUE_VISUALIZER
134
134
,m_kind(other.m_kind)
135
135
#endif
136
136
{}
137
137
138
- web::json::value &web::json::value::operator =(web::json::value &&other)
138
+ web::json::value &web::json::value::operator =(web::json::value &&other) _noexcept
139
139
{
140
140
if (this != &other)
141
141
{
You can’t perform that action at this time.
0 commit comments