From b8f2d1886c2a09805df77e24f14a06a2fd856a80 Mon Sep 17 00:00:00 2001 From: Jerry Gamache Date: Wed, 15 Jun 2016 12:55:34 -0400 Subject: [PATCH] Remove unnecessary braces. --- include/pybind11/attr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pybind11/attr.h b/include/pybind11/attr.h index 907e6ed6..1e063a5f 100644 --- a/include/pybind11/attr.h +++ b/include/pybind11/attr.h @@ -40,7 +40,7 @@ template struct arg_t : public arg { inline namespace literals { /// 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