You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constexpr QuantityOf<isq::speed> auto avg_speed(QuantityOf<isq::length> auto d,
131
-
QuantityOf<isq::time> auto t)
131
+
QuantityOf<isq::duration> auto t)
132
132
{
133
133
return d / t;
134
134
}
135
135
136
136
int main()
137
137
{
138
138
using namespace mp_units::si::unit_symbols;
139
-
using namespace mp_units::international::unit_symbols;
139
+
using namespace mp_units::yard_pound::unit_symbols;
140
140
141
141
constexpr quantity v1 = 110 * km / h;
142
142
constexpr quantity v2 = 70 * mph;
@@ -156,7 +156,7 @@ int main()
156
156
}
157
157
```
158
158
159
-
[](https://godbolt.org/z/fxcjs19ah)
159
+
[](https://godbolt.org/z/rYq7cfdxY)
0 commit comments