Quote:
Originally Posted by Hansrutger
Код:
SomeFunction(maybe, some, parameters);
{
SendClientMessage(maybe, COLOR_SOME, "Text");
}
Can make your compiler go bananas and you end up spending some great time on finding what the heck is wrong since the compiler just stops working. Eventually you see that you added an unnecessary semicolon to the function. Sadly this has happened to me in the past but I had forgotten what it was, luckily it didn't take way too long time figuring it out since I had been compiling frequently!
Protip: Compile as much as you can! :P
|
I frequently diff and read all changes between HEAD HEAD^ if I can't solve the errors within seconds.