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
e206564e
Commit
e206564e
authored
Feb 04, 2016
by
Wenzel Jakob
Browse files
removed a redundant tag
parent
a6501790
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
include/pybind11/pybind11.h
include/pybind11/pybind11.h
+3
-3
No files found.
include/pybind11/pybind11.h
View file @
e206564e
...
@@ -758,19 +758,19 @@ public:
...
@@ -758,19 +758,19 @@ public:
template
<
detail
::
op_id
id
,
detail
::
op_type
ot
,
typename
L
,
typename
R
,
typename
...
Extra
>
template
<
detail
::
op_id
id
,
detail
::
op_type
ot
,
typename
L
,
typename
R
,
typename
...
Extra
>
class_
&
def
(
const
detail
::
op_
<
id
,
ot
,
L
,
R
>
&
op
,
const
Extra
&
...
extra
)
{
class_
&
def
(
const
detail
::
op_
<
id
,
ot
,
L
,
R
>
&
op
,
const
Extra
&
...
extra
)
{
op
.
template
execute
<
type
>(
*
this
,
is_method
(
*
this
),
extra
...);
op
.
template
execute
<
type
>(
*
this
,
extra
...);
return
*
this
;
return
*
this
;
}
}
template
<
detail
::
op_id
id
,
detail
::
op_type
ot
,
typename
L
,
typename
R
,
typename
...
Extra
>
template
<
detail
::
op_id
id
,
detail
::
op_type
ot
,
typename
L
,
typename
R
,
typename
...
Extra
>
class_
&
def_cast
(
const
detail
::
op_
<
id
,
ot
,
L
,
R
>
&
op
,
const
Extra
&
...
extra
)
{
class_
&
def_cast
(
const
detail
::
op_
<
id
,
ot
,
L
,
R
>
&
op
,
const
Extra
&
...
extra
)
{
op
.
template
execute_cast
<
type
>(
*
this
,
is_method
(
*
this
),
extra
...);
op
.
template
execute_cast
<
type
>(
*
this
,
extra
...);
return
*
this
;
return
*
this
;
}
}
template
<
typename
...
Args
,
typename
...
Extra
>
template
<
typename
...
Args
,
typename
...
Extra
>
class_
&
def
(
const
detail
::
init
<
Args
...
>
&
init
,
const
Extra
&
...
extra
)
{
class_
&
def
(
const
detail
::
init
<
Args
...
>
&
init
,
const
Extra
&
...
extra
)
{
init
.
template
execute
<
type
>(
*
this
,
is_method
(
*
this
),
extra
...);
init
.
template
execute
<
type
>(
*
this
,
extra
...);
return
*
this
;
return
*
this
;
}
}
...
...
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