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
add56ccd
Commit
add56ccd
authored
Jan 12, 2018
by
Jason Rhinelander
Browse files
MSVC workaround for broken `using detail::_` warning
parent
657a51e8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
include/pybind11/numpy.h
include/pybind11/numpy.h
+3
-3
No files found.
include/pybind11/numpy.h
View file @
add56ccd
...
...
@@ -940,9 +940,9 @@ struct format_descriptor<T, detail::enable_if_t<std::is_enum<T>::value>> {
template
<
typename
T
>
struct
format_descriptor
<
T
,
detail
::
enable_if_t
<
detail
::
array_info
<
T
>::
is_array
>>
{
static
std
::
string
format
()
{
using
detail
::
_
;
static
constexpr
auto
extents
=
_
(
"("
)
+
detail
::
array_info
<
T
>::
extents
+
_
(
")"
);
return
extents
.
text
+
format_descriptor
<
detail
::
remove_all_extents_t
<
T
>>::
format
();
using
namespace
detail
;
static
constexpr
auto
extents
=
_
(
"("
)
+
array_info
<
T
>::
extents
+
_
(
")"
);
return
extents
.
text
+
format_descriptor
<
remove_all_extents_t
<
T
>>::
format
();
}
};
...
...
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