mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
Add array uint64 t
This commit is contained in:
parent
7d46b22f8e
commit
3b04270006
@ -24,6 +24,10 @@ PYBIND11_MODULE(pyngcore, m) // NOLINT
|
||||
ExportArray<unsigned short>(m);
|
||||
ExportArray<unsigned char>(m);
|
||||
|
||||
// Compiler dependent implementation of size_t
|
||||
if constexpr(!is_same_v<size_t, uint64_t>)
|
||||
ExportArray<uint64_t>(m);
|
||||
|
||||
ExportTable<int>(m);
|
||||
|
||||
py::class_<BitArray, shared_ptr<BitArray>> (m, "BitArray")
|
||||
|
Loading…
Reference in New Issue
Block a user