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
c51dec40
Commit
c51dec40
authored
Feb 14, 2021
by
Ralf W. Grosse-Kunstleve
Browse files
Working around MSVC 2015 bug.
parent
44bdc146
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
include/pybind11/cast.h
include/pybind11/cast.h
+5
-0
No files found.
include/pybind11/cast.h
View file @
c51dec40
...
...
@@ -1392,6 +1392,10 @@ struct smart_holder_type_caster : smart_holder_type_caster_load<T>,
// clang-format off
#if defined(_MSC_VER) && _MSC_VER < 1910
// Working around MSVC 2015 bug.
template
<
typename
T_
>
using
cast_op_type
=
detail
::
cast_op_type
<
T_
>
;
#else
template
<
typename
T_
>
using
cast_op_type
=
conditional_t
<
std
::
is_same
<
remove_reference_t
<
T_
>
,
T
const
*>::
value
,
...
...
@@ -1401,6 +1405,7 @@ struct smart_holder_type_caster : smart_holder_type_caster_load<T>,
conditional_t
<
std
::
is_same
<
T_
,
T
const
&>::
value
,
T
const
&
,
T
&>>>
;
#endif
operator
T
const
&
()
{
return
this
->
loaded_as_lvalue_ref
();
}
operator
T
&
()
{
return
this
->
loaded_as_lvalue_ref
();
}
...
...
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