diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-18 23:42:07 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-18 23:42:07 +0100 |
commit | 4d9a82b720c8ce74b94f43f72ddd819ef21abbdf (patch) | |
tree | c0a5d21b8e19fbb60c286faec8e302e6f32b6679 /src/RTree.cpp | |
parent | 32b8c22828315292857e2cd9909fba620f30ff70 (diff) |
pre-declare integer types without cstddef/cstdint
Diffstat (limited to 'src/RTree.cpp')
-rw-r--r-- | src/RTree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/RTree.cpp b/src/RTree.cpp index 32323e69..81677922 100644 --- a/src/RTree.cpp +++ b/src/RTree.cpp @@ -1,3 +1,3 @@ #include "RTree.hpp" -template class RTree<std::uint64_t, float, 2, float>; +template class RTree<floormat::uint64_t, float, 2, float>; |