🔨 remove noexcept annotation

pull/2872/head
Niels Lohmann 2021-07-15 21:49:09 +02:00
parent ecaac22656
commit 3e4723a49f
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69
2 changed files with 2 additions and 2 deletions

View File

@ -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)
{

View File

@ -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)
{