Remove unnecessary braces.

This commit is contained in:
Jerry Gamache 2016-06-15 12:55:34 -04:00
parent c6e0cdfa54
commit b8f2d1886c

View File

@ -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