Commit 245f77b4 by Ivan Smirnov

Use uint64_t instead of long in numpy tests (MSVC)

parent f36ec978
...@@ -54,13 +54,13 @@ struct PartialStruct { ...@@ -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 { };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment