summaryrefslogtreecommitdiffstats
path: root/src/NBT/ListTag.hpp
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2018-07-21 16:17:40 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2018-07-21 16:29:26 +0200
commit59fe1ba0255e5e1c4a24658f7ccc34dc294aeb50 (patch)
tree6659532fa46bc4aa0129c2723454f5b71bda5f1d /src/NBT/ListTag.hpp
parent4288935d701a871b91838dd6c837cc6c2060271f (diff)
downloadMinedMap-59fe1ba0255e5e1c4a24658f7ccc34dc294aeb50.tar
MinedMap-59fe1ba0255e5e1c4a24658f7ccc34dc294aeb50.zip
NBT: make Tag constructors public, remove friend declarations
Diffstat (limited to 'src/NBT/ListTag.hpp')
-rw-r--r--src/NBT/ListTag.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/NBT/ListTag.hpp b/src/NBT/ListTag.hpp
index 833c41e..d86abdb 100644
--- a/src/NBT/ListTag.hpp
+++ b/src/NBT/ListTag.hpp
@@ -48,10 +48,9 @@ public:
template<typename T>
class ListTag : public ListTagBase, public std::vector<std::shared_ptr<const T>> {
private:
- friend class Tag;
-
Type type;
+public:
ListTag(Type type0, Buffer *buffer) : type(type0) {
uint32_t len = buffer->get32();
@@ -61,7 +60,6 @@ private:
(*this)[i] = std::static_pointer_cast<const T>(Tag::readTag(type, buffer));
}
-public:
virtual Type getSubtype() const {
return type;
}