From 842f2eaf2739c550dfb76121fa05fbc2fc6b285b Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Sun, 22 May 2022 19:47:11 +0200 Subject: [PATCH] feat: `quantity` CTAD guide added --- src/core/include/units/quantity.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/include/units/quantity.h b/src/core/include/units/quantity.h index 39c3c805..d2a40fa2 100644 --- a/src/core/include/units/quantity.h +++ b/src/core/include/units/quantity.h @@ -449,6 +449,9 @@ template explicit(false) quantity(Rep&&)->quantity; #endif +template +explicit(false) quantity(quantity)->quantity; + template explicit(false) quantity(Rep)->quantity;