refactor: got rid of gcc-9 backlog

BREAKING CHANGE: gcc-9.3 no longer supported
This commit is contained in:
Mateusz Pusz
2020-09-08 13:09:34 +02:00
parent 7ed4f19ef3
commit 4bb51586dc
27 changed files with 131 additions and 760 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ int main()
auto torque = 20.0q_Nm;
auto energy = 20.0q_J;
physical::Angle AUTO angle = torque / energy;
physical::Angle auto angle = torque / energy;
std::cout << angle << '\n';
}