Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
gaoqiong
pybind11
Commits
a3ee1a45
Commit
a3ee1a45
authored
Apr 06, 2016
by
Wenzel Jakob
Browse files
improved pair type caster (fixes #155)
parent
912feec1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
include/pybind11/cast.h
include/pybind11/cast.h
+2
-1
No files found.
include/pybind11/cast.h
View file @
a3ee1a45
...
@@ -521,7 +521,8 @@ public:
...
@@ -521,7 +521,8 @@ public:
template
<
typename
T
>
using
cast_op_type
=
type
;
template
<
typename
T
>
using
cast_op_type
=
type
;
operator
type
()
{
operator
type
()
{
return
type
(
first
,
second
);
return
type
(
first
.
operator
typename
type_caster
<
typename
intrinsic_type
<
T1
>::
type
>::
template
cast_op_type
<
T1
>(),
second
.
operator
typename
type_caster
<
typename
intrinsic_type
<
T2
>::
type
>::
template
cast_op_type
<
T2
>());
}
}
protected:
protected:
type_caster
<
typename
intrinsic_type
<
T1
>::
type
>
first
;
type_caster
<
typename
intrinsic_type
<
T1
>::
type
>
first
;
...
...
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