diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/tag_list.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/tag_list.h b/include/tag_list.h index a2170c4f0f..d34ca83b20 100644 --- a/include/tag_list.h +++ b/include/tag_list.h @@ -31,8 +31,9 @@ namespace nbt //Forward declarations class tag_list; class tag_compound; -class tag_byte_array; -class tag_int_array; +template<class T> class tag_array; +typedef tag_array<int8_t> tag_byte_array; +typedef tag_array<int32_t> tag_int_array; ///Tag that contains multiple unnamed tags of the same type class tag_list final : public detail::crtp_tag<tag_list> |
