From ddbbb8ac5547d5a818aa1b79e56548d72f82c14b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johel=20Ernesto=20Guerrero=20Pe=C3=B1a?= Date: Thu, 18 Mar 2021 17:17:25 -0400 Subject: [PATCH] style: remove braces from value --- src/core/include/units/quantity.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/include/units/quantity.h b/src/core/include/units/quantity.h index 6621f74a..c734cd7e 100644 --- a/src/core/include/units/quantity.h +++ b/src/core/include/units/quantity.h @@ -36,7 +36,7 @@ namespace units { namespace detail { -template // TODO: Replace with `v * R{}` pending https://github.com/BobSteagall/wg21/issues/58. +template // TODO: Replace with `v * R` pending https://github.com/BobSteagall/wg21/issues/58. inline constexpr auto make_quantity = [](auto&& v) { using Rep = std::remove_cvref_t; return quantity(std::forward(v));