Leading underscore prefix removed from UDLs

This commit is contained in:
Mateusz Pusz
2019-07-24 12:20:06 +02:00
parent 98203afa29
commit 9e74613a4a
15 changed files with 192 additions and 195 deletions

View File

@ -56,7 +56,7 @@ void example_2(double distance_v, double duration_v)
int main()
{
try {
example_1(60_kmph, 10.0_min);
example_1(60kmph, 10.0min);
example_2(220, 2);
}
catch (const std::exception& ex) {