summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tag_array.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/tag_array.cpp b/src/tag_array.cpp
index 3f073232d1..6173dbb1dd 100644
--- a/src/tag_array.cpp
+++ b/src/tag_array.cpp
@@ -25,18 +25,6 @@
namespace nbt
{
-template<class T>
-T& tag_array<T>::at(size_t i)
-{
- return data.at(i);
-}
-
-template<class T>
-T tag_array<T>::at(size_t i) const
-{
- return data.at(i);
-}
-
//Slightly different between byte_array and int_array
//Reading
template<>
@@ -103,8 +91,4 @@ void tag_array<int32_t>::write_payload(io::stream_writer& writer) const
writer.write_num(i);
}
-//Enforce template instantiations
-template class NBT_EXPORT tag_array<int8_t>;
-template class NBT_EXPORT tag_array<int32_t>;
-
}