diff options
| -rw-r--r-- | include/tag_list.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/tag_list.h b/include/tag_list.h index f44f4ba66e..87b2742e92 100644 --- a/include/tag_list.h +++ b/include/tag_list.h @@ -29,7 +29,12 @@ namespace nbt { -///Tag that contains multiple unnamed tags of the same type +/** + * @brief Tag that contains multiple unnamed tags of the same type + * + * The list's behavior is undefined if the contained values are changed in a + * way that their type differs from the list's content type. + */ class tag_list final : public detail::crtp_tag<tag_list> { public: |
