Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tiago Peixoto
graph-tool
Commits
d6b03c17
Commit
d6b03c17
authored
Oct 10, 2008
by
Tiago Peixoto
Browse files
Fix compilation error on 64 bit architectures
This adds missing uint64_t type to the list o supported numpy types.
parent
1dad209a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/graph/numpy_bind.hh
View file @
d6b03c17
...
...
@@ -48,6 +48,7 @@ typedef mpl::map<
mpl
::
pair
<
uint32_t
,
mpl
::
int_
<
NPY_UINT32
>
>
,
mpl
::
pair
<
int32_t
,
mpl
::
int_
<
NPY_INT32
>
>
,
mpl
::
pair
<
int64_t
,
mpl
::
int_
<
NPY_INT64
>
>
,
mpl
::
pair
<
uint64_t
,
mpl
::
int_
<
NPY_UINT64
>
>
,
mpl
::
pair
<
double
,
mpl
::
int_
<
NPY_DOUBLE
>
>
,
mpl
::
pair
<
long
double
,
mpl
::
int_
<
NPY_LONGDOUBLE
>
>
,
mpl
::
pair
<
string
,
mpl
::
int_
<
NPY_STRING
>
>
// not really used
...
...
Write
Preview
Supports
Markdown
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