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.h | |
parent | 32b8c22828315292857e2cd9909fba620f30ff70 (diff) |
pre-declare integer types without cstddef/cstdint
Diffstat (limited to 'src/RTree.h')
-rw-r--r-- | src/RTree.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/RTree.h b/src/RTree.h index 04d84863..9ef66f34 100644 --- a/src/RTree.h +++ b/src/RTree.h @@ -278,8 +278,7 @@ public: void ListTree(std::vector<Rect>& vec, std::vector<Node*>& temp) const; }; -#include <cinttypes> -extern template class RTree<std::uint64_t, float, 2, float>; +extern template class RTree<floormat::uint64_t, float, 2, float>; //#undef RTREE_TEMPLATE //#undef RTREE_QUAL |