I love reading code like this:
int IAmGoingToReturnAnInt ( int* gimmeSomeData )
{
int munchMunch = *gimmeSomeData;
++munchMunch;
// Developer note: FU
}
Okay, the last developer note doesn’t really exist, but you would think that this function would return an integer.
I mean, come on! Give me something!
Let me guess – return is missing?
You got it! 🙂