🔨 remove noexcept annotation
This commit is contained in:
parent
ecaac22656
commit
3e4723a49f
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user