(no title)
Rucadi | 2 months ago
For example:
auto a;
will always fail to compile not matter what flags.
int a;
is valid.
Also it prevents implicit type conversions, what you get as type on auto is the type you put at the right.
That's good.
Rucadi | 2 months ago
For example:
auto a;
will always fail to compile not matter what flags.
int a;
is valid.
Also it prevents implicit type conversions, what you get as type on auto is the type you put at the right.
That's good.
feelamee|2 months ago
jb1991|2 months ago
What do you mean it is not a source of bugs?
jb1991|2 months ago