📝 update documentation

This commit is contained in:
Niels Lohmann 2020-05-22 18:21:37 +02:00
parent 88292d9499
commit c92a696852
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69
152 changed files with 152 additions and 154 deletions

View file

@ -39,8 +39,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)