From dc4d73a90c0e5c7906350404d619d1dab53437a6 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Wed, 8 Nov 2023 15:36:06 -1000 Subject: [PATCH] fix(example): fixing compilation after the previous commit --- example/currency.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/currency.cpp b/example/currency.cpp index 613f1b6aa..fb1ff9fa6 100644 --- a/example/currency.cpp +++ b/example/currency.cpp @@ -99,7 +99,7 @@ int main() { using namespace unit_symbols; - quantity_point price_usd = zero + 100 * USD; + quantity_point price_usd = zero + 100 * USD; quantity_point price_euro = exchange_to(price_usd); std::cout << price_usd.quantity_from(zero) << " -> " << price_euro.quantity_from(zero) << "\n";