🔨 remove noexcept annotation

parent ecaac226
......@@ -1131,7 +1131,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
binary = create<binary_t>(std::move(value));
}
void destroy(value_t t) noexcept
void destroy(value_t t)
{
if (t == value_t::array || t == value_t::object)
{
......
......@@ -18191,7 +18191,7 @@ class basic_json // NOLINT(cppcoreguidelines-special-member-functions,hicpp-spec
binary = create<binary_t>(std::move(value));
}
void destroy(value_t t) noexcept
void destroy(value_t t)
{
if (t == value_t::array || t == value_t::object)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment