mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
Merge branch 'add_array_uint64_t' into 'master'
Add array uint64 t See merge request ngsolve/netgen!605
This commit is contained in:
commit
e95966ee44
@ -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