42School / norminette

Official 42 norminette
MIT License
979 stars 142 forks source link

Fix AUTO keyword not giving variable asignment restrictions #515

Open errgrab opened 1 month ago

errgrab commented 1 month ago

When you assign variables using the auto keyword you don't have any of variable assignment restrictions. Example:

int main(void)
{
    auto int a = 0, b = 1;
    auto int c = 0, d = 1;
    auto int e = 0, f = 1;
}