From 5b135b1251adcbaa6049f35780d4811e574444a1 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Thu, 4 Apr 2019 10:40:59 +0200 Subject: [PATCH] Default representation changed to double --- src/include/units/si/frequency.h | 2 +- src/include/units/si/length.h | 2 +- src/include/units/si/time.h | 2 +- src/include/units/si/velocity.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/include/units/si/frequency.h b/src/include/units/si/frequency.h index 9d3b786c..20685f57 100644 --- a/src/include/units/si/frequency.h +++ b/src/include/units/si/frequency.h @@ -48,7 +48,7 @@ namespace units { struct terahertz : unit {}; template<> struct upcasting_traits : std::type_identity {}; - template + template using frequency = quantity; template diff --git a/src/include/units/si/length.h b/src/include/units/si/length.h index 94ee40db..10d2d90a 100644 --- a/src/include/units/si/length.h +++ b/src/include/units/si/length.h @@ -42,7 +42,7 @@ namespace units { struct kilometer : unit {}; template<> struct upcasting_traits : std::type_identity {}; - template + template using length = quantity; template diff --git a/src/include/units/si/time.h b/src/include/units/si/time.h index e6b98457..ee8ce0cb 100644 --- a/src/include/units/si/time.h +++ b/src/include/units/si/time.h @@ -48,7 +48,7 @@ namespace units { struct hour : unit> {}; template<> struct upcasting_traits : std::type_identity {}; - template + template using time = quantity; diff --git a/src/include/units/si/velocity.h b/src/include/units/si/velocity.h index 632c641a..08ccd21a 100644 --- a/src/include/units/si/velocity.h +++ b/src/include/units/si/velocity.h @@ -40,7 +40,7 @@ namespace units { struct mile_per_hour : unit> {}; template<> struct upcasting_traits : std::type_identity {}; - template + template using velocity = quantity; template