mirror of
https://github.com/pybind/pybind11.git
synced 2025-02-07 17:32:00 +00:00
Use uint64_t instead of long in numpy tests (MSVC)
This commit is contained in:
parent
f36ec97827
commit
245f77b4d5
@ -54,13 +54,13 @@ struct PartialStruct {
|
|||||||
bool x;
|
bool x;
|
||||||
uint32_t y;
|
uint32_t y;
|
||||||
float z;
|
float z;
|
||||||
long dummy2;
|
uint64_t dummy2;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct PartialNestedStruct {
|
struct PartialNestedStruct {
|
||||||
long dummy1;
|
uint64_t dummy1;
|
||||||
PartialStruct a;
|
PartialStruct a;
|
||||||
long dummy2;
|
uint64_t dummy2;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct UnboundStruct { };
|
struct UnboundStruct { };
|
||||||
|
Loading…
Reference in New Issue
Block a user