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
1f66a584
Commit
1f66a584
authored
Jul 18, 2016
by
Wenzel Jakob
Browse files
pybind11.h: minor cleanups (no functionality change)
parent
6969e7c1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
include/pybind11/pybind11.h
include/pybind11/pybind11.h
+4
-5
No files found.
include/pybind11/pybind11.h
View file @
1f66a584
...
@@ -476,8 +476,7 @@ protected:
...
@@ -476,8 +476,7 @@ protected:
}
}
msg
+=
" Invoked with: "
;
msg
+=
" Invoked with: "
;
tuple
args_
(
args
,
true
);
tuple
args_
(
args
,
true
);
for
(
std
::
size_t
ti
=
overloads
->
is_constructor
?
1
:
0
;
ti
<
args_
.
size
();
++
ti
)
for
(
size_t
ti
=
overloads
->
is_constructor
?
1
:
0
;
ti
<
args_
.
size
();
++
ti
)
{
{
msg
+=
static_cast
<
std
::
string
>
(
static_cast
<
object
>
(
args_
[
ti
]).
str
());
msg
+=
static_cast
<
std
::
string
>
(
static_cast
<
object
>
(
args_
[
ti
]).
str
());
if
((
ti
+
1
)
!=
args_
.
size
()
)
if
((
ti
+
1
)
!=
args_
.
size
()
)
msg
+=
", "
;
msg
+=
", "
;
...
...
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