So one thing that kills me a lot in c++ is the switch statement. As you all know switch statements look like the following.
auto s = 0;
switch(s)
{
case 0:
doSomething();
break;
case 1:
doSomething1();
break;
}
So one thing that kills me a lot in c++ is the switch statement. As you all know switch statements look like the following.
auto s = 0;
switch(s)
{
case 0:
doSomething();
break;
case 1:
doSomething1();
break;
}
See all tags.