mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +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;
|
||||
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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user