Fix extra ";" clang warnings

This commit is contained in:
Pierre Hallot
2021-08-19 17:04:34 +02:00
parent 44ffaa052c
commit 433604843d
4 changed files with 5 additions and 5 deletions

View File

@@ -94,7 +94,7 @@ struct external_constructor<value_t::binary>
{
j.m_value.destroy(j.m_type);
j.m_type = value_t::binary;
j.m_value = typename BasicJsonType::binary_t(std::move(b));;
j.m_value = typename BasicJsonType::binary_t(std::move(b));
j.assert_invariant();
}
};