04.11.2013, 15:58
Quote:
Yes there is. Something like bracket checker. Serach it on ******. Anyway you are whining about 3k lines. I have to search through 56k! That's taking a lot of time! But i rather do it manually than letting a machine analyse my code.
|
Code:
main() { { }
Code:
main() { { } }
pawn is free-form. certain things about the language that an ideal bracket finder would need to know to produce correct results, not just scan for '{' or '}'.
edit: anyway, @op - simply begin commenting sections of the code where you suspect cause trouble. when the compiler doesn't throw a fit, you know that somewhere in the commented section is the issue.