|
|
|
|
|
by tialaramex
455 days ago
|
|
In C23, auto doesn't have a default type, if you write auto without a type then you get the C++ style "type deduction" instead. This is part of the trend (regretted by some WG14 members) of WG14 increasingly serving as a way to fix the core of C++ by instead mutating the C language it's ostensibly based on. You can think of deduction as crap type inference. |
|