1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-24 02:21:01 +03:00

📝 update documentation

This commit is contained in:
Niels Lohmann
2020-05-22 18:21:37 +02:00
parent 88292d9499
commit c92a696852
152 changed files with 152 additions and 154 deletions

View File

@ -4265,8 +4265,7 @@ class byte_container_with_subtype : public BinaryType
: container_type(std::move(b))
{}
byte_container_with_subtype(const container_type& b,
std::uint8_t subtype) noexcept(noexcept(container_type(b)))
byte_container_with_subtype(const container_type& b, std::uint8_t subtype) noexcept(noexcept(container_type(b)))
: container_type(b)
, m_subtype(subtype)
, m_has_subtype(true)