test_package fixed

This commit is contained in:
Mateusz Pusz
2020-05-10 22:59:16 +02:00
parent c6627ed20f
commit 62434507a2
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -23,7 +23,9 @@
#include <units/physical/si/speed.h>
#include <iostream>
constexpr units::Speed AUTO avg_speed(units::Length AUTO d, units::Time AUTO t)
using namespace units::physical;
constexpr Speed AUTO avg_speed(Length AUTO d, Time AUTO t)
{
return d / t;
}