From dd1a46cd358765ce15196056d6ea6898f116b79f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johel=20Ernesto=20Guerrero=20Pe=C3=B1a?= Date: Thu, 18 Mar 2021 13:13:49 -0400 Subject: [PATCH] style: mark comment as TODO Addresses https://github.com/mpusz/units/pull/261#discussion_r596641518. --- 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 fc100ab6..c7f8b071 100644 --- a/src/core/include/units/quantity.h +++ b/src/core/include/units/quantity.h @@ -36,7 +36,7 @@ namespace units { namespace detail { -template // 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 = decltype(v); return quantity(std::move(v));