fix: broken concept names fixed

This commit is contained in:
Mateusz Pusz
2023-02-03 16:58:33 +01:00
parent 83aee04da0
commit 0cebb68e2e
4 changed files with 12 additions and 12 deletions

View File

@ -29,7 +29,7 @@
using namespace mp_units;
constexpr quantity_of<isq::speed> auto avg_speed(quantity_of<isq::distance> auto d, quantity_of<isq::duration> auto t)
constexpr QuantityOf<isq::speed> auto avg_speed(QuantityOf<isq::distance> auto d, QuantityOf<isq::duration> auto t)
{
return quantity_cast<isq::speed>(d / t);
}