All UDLs are now prefixed with q_

This commit is contained in:
Mateusz Pusz
2020-02-17 15:56:06 +01:00
parent 0566cc631d
commit 18620044c5
65 changed files with 768 additions and 768 deletions
+1 -1
View File
@@ -31,5 +31,5 @@ constexpr units::Velocity AUTO avg_speed(units::Length AUTO d, units::Time AUTO
int main()
{
using namespace units::si::literals;
std::cout << "Average speed = " << avg_speed(240.km, 2h) << '\n';
std::cout << "Average speed = " << avg_speed(240.q_km, 2q_h) << '\n';
}