Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
danielaparker committed Nov 21, 2020
2 parents 17ac165 + ed5813c commit 6e14766
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions include/jsoncons/json_container_types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@ namespace jsoncons {
if (item.size() > 0) // non-empty object or array
{
elements_.push_back(std::move(item));
assert(item.size() == 0);
}
}
current.clear();
Expand All @@ -308,7 +307,6 @@ namespace jsoncons {
if (kv.value().size() > 0) // non-empty object or array
{
elements_.push_back(std::move(kv.value()));
assert(kv.value().size() == 0);
}
}
current.clear();
Expand Down Expand Up @@ -1201,7 +1199,6 @@ namespace jsoncons {
if (kv.value().size() > 0)
{
temp.emplace_back(std::move(kv.value()));
assert(kv.value().size() == 0);
}
}
}
Expand Down Expand Up @@ -1894,7 +1891,6 @@ namespace jsoncons {
if (kv.value().size() > 0)
{
temp.emplace_back(std::move(kv.value()));
assert(kv.value().size() == 0);
}
}
}
Expand Down

0 comments on commit 6e14766

Please sign in to comment.