"git@developer.sourcefind.cn:gaoqiong/pybind11.git" did not exist on "3ee91b2f0aa24480bd215c0dbd1b8917d89c7e0f"
Commit b8f2d188 authored by Jerry Gamache's avatar Jerry Gamache
Browse files

Remove unnecessary braces.

parent c6e0cdfa
...@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment