Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
pybind11
Commits
245f77b4
Commit
245f77b4
authored
Aug 13, 2016
by
Ivan Smirnov
Browse files
Use uint64_t instead of long in numpy tests (MSVC)
parent
f36ec978
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
example/example-numpy-dtypes.cpp
example/example-numpy-dtypes.cpp
+3
-3
No files found.
example/example-numpy-dtypes.cpp
View file @
245f77b4
...
@@ -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
{
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment