summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgazelleguardian <gazelleguardian8@gmail.com>2021-12-06 03:54:47 +0100
committerPhilipp David <pd@3b.pm>2022-03-22 16:59:40 +0100
commit691cea4b1a4aa1779c9ae88d88924e2fd3dcb6fd (patch)
tree4395e412b2a19521f950e62446a4ea072bea83ce /src
parentdc72a20b7efd304d12af2025223fad07b4b78464 (diff)
downloadProject-Tick-691cea4b1a4aa1779c9ae88d88924e2fd3dcb6fd.tar.gz
Project-Tick-691cea4b1a4aa1779c9ae88d88924e2fd3dcb6fd.zip
Fix building on windows with clang and msvc
Signed-off-by: Philipp David <pd@3b.pm>
Diffstat (limited to 'src')
-rw-r--r--src/tag_array.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tag_array.cpp b/src/tag_array.cpp
index 4a1668ad1e..a48f52a9c2 100644
--- a/src/tag_array.cpp
+++ b/src/tag_array.cpp
@@ -126,4 +126,9 @@ void tag_array<int64_t>::write_payload(io::stream_writer& writer) const
writer.write_num(i);
}
+//Explicit instantiations
+template class NBT_EXPORT tag_array<int8_t>;
+template class NBT_EXPORT tag_array<int32_t>;
+template class NBT_EXPORT tag_array<int64_t>;
+
}