summaryrefslogtreecommitdiffstats
path: root/src/NBT/StringTag.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/StringTag.hpp
parent4288935d701a871b91838dd6c837cc6c2060271f (diff)
downloadMinedMap-59fe1ba0255e5e1c4a24658f7ccc34dc294aeb50.tar
MinedMap-59fe1ba0255e5e1c4a24658f7ccc34dc294aeb50.zip
NBT: make Tag constructors public, remove friend declarations
Diffstat (limited to 'src/NBT/StringTag.hpp')
-rw-r--r--src/NBT/StringTag.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/NBT/StringTag.hpp b/src/NBT/StringTag.hpp
index 5f68d63..2fda6d3 100644
--- a/src/NBT/StringTag.hpp
+++ b/src/NBT/StringTag.hpp
@@ -34,17 +34,15 @@ namespace NBT {
class StringTag : public Tag {
private:
- friend class Tag;
-
uint16_t len;
const uint8_t *ptr;
+public:
StringTag(Buffer *buffer) {
len = buffer->get16();
ptr = buffer->get(len);
}
-public:
virtual Type getType() const {
return Type::String;
}