Commit b8f2d188 by Jerry Gamache

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