mirror of
https://github.com/pybind/pybind11.git
synced 2026-05-05 06:01:36 +00:00
Use uint64_t instead of long in numpy tests (MSVC)
This commit is contained in:
@@ -54,13 +54,13 @@ struct PartialStruct {
|
||||
bool x;
|
||||
uint32_t y;
|
||||
float z;
|
||||
long dummy2;
|
||||
uint64_t dummy2;
|
||||
};
|
||||
|
||||
struct PartialNestedStruct {
|
||||
long dummy1;
|
||||
uint64_t dummy1;
|
||||
PartialStruct a;
|
||||
long dummy2;
|
||||
uint64_t dummy2;
|
||||
};
|
||||
|
||||
struct UnboundStruct { };
|
||||
|
||||
Reference in New Issue
Block a user