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
b8f2d188
"git@developer.sourcefind.cn:gaoqiong/pybind11.git" did not exist on "3ee91b2f0aa24480bd215c0dbd1b8917d89c7e0f"
Commit
b8f2d188
authored
Jun 15, 2016
by
Jerry Gamache
Browse files
Remove unnecessary braces.
parent
c6e0cdfa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
include/pybind11/attr.h
include/pybind11/attr.h
+1
-1
No files found.
include/pybind11/attr.h
View file @
b8f2d188
...
@@ -40,7 +40,7 @@ template <typename T> struct arg_t : public arg {
...
@@ -40,7 +40,7 @@ template <typename T> struct arg_t : public arg {
inline
namespace
literals
{
inline
namespace
literals
{
/// String literal version of arg
/// String literal version of arg
constexpr
arg
operator
""
_a
(
const
char
*
name
,
size_t
)
{
return
{
arg
(
name
)
}
;
}
constexpr
arg
operator
""
_a
(
const
char
*
name
,
size_t
)
{
return
arg
(
name
);
}
}
}
/// Annotation for methods
/// Annotation for methods
...
...
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