From a9fc203ee56480bcb6d80ba127e9af20500bbfd9 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Mon, 30 Sep 2024 19:46:21 +0200 Subject: [PATCH] fix: MSVC workaround applied to `test_package` --- test_package/test_package.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test_package/test_package.cpp b/test_package/test_package.cpp index 15e159e00..6361b004d 100644 --- a/test_package/test_package.cpp +++ b/test_package/test_package.cpp @@ -38,8 +38,9 @@ import mp_units; using namespace mp_units; -constexpr QuantityOf auto avg_speed(QuantityOf auto d, - QuantityOf auto t) +constexpr QuantityOf auto avg_speed( + QuantityOf auto d, + QuantityOf auto t) { return d / t; }