diff options
| author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-03-22 21:58:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-22 21:58:31 +0100 |
| commit | 5bbeb216d27f60bb8063e9ab01f7ea6976a2e0b4 (patch) | |
| tree | 676c2216dbddcfa40b11c362523225704c2bf627 /src | |
| parent | dc72a20b7efd304d12af2025223fad07b4b78464 (diff) | |
| parent | b156bcaa4acf0a5b392bbed60bd274c39e2398d4 (diff) | |
| download | Project-Tick-5bbeb216d27f60bb8063e9ab01f7ea6976a2e0b4.tar.gz Project-Tick-5bbeb216d27f60bb8063e9ab01f7ea6976a2e0b4.zip | |
Merge pull request #2 from oynqr/build/lto
Fix building with LTO
Diffstat (limited to 'src')
| -rw-r--r-- | src/tag_array.cpp | 5 |
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>; + } |
