Loads of undefined symbol errors.
#6

Quote:
Originally Posted by CrazyChoco
View Post
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.
they don't work well. they parse through text looking for braces, if you have say comments or strings with braces in them they'll give weird results. not only that, but how can you tell which opening brace is missing a pair?

Code:
main()
{
	{
	

}
you'd think that second brace is missing a pair, but what if you did,

Code:
main()
{
	{
	

}
}
wouldn't that be correct?

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.
Reply


Messages In This Thread
Loads of undefined symbol errors. - by Whitesaw64 - 04.11.2013, 15:34
AW: Loads of undefined symbol errors. - by Skimmer - 04.11.2013, 15:35
Re: Loads of undefined symbol errors. - by Whitesaw64 - 04.11.2013, 15:38
Re: Loads of undefined symbol errors. - by Ada32 - 04.11.2013, 15:42
Re: Loads of undefined symbol errors. - by CrazyChoco - 04.11.2013, 15:47
Re: Loads of undefined symbol errors. - by Ada32 - 04.11.2013, 15:58
AW: Loads of undefined symbol errors. - by Skimmer - 04.11.2013, 16:01
Re: Loads of undefined symbol errors. - by CrazyChoco - 04.11.2013, 16:04
Re: Loads of undefined symbol errors. - by Whitesaw64 - 04.11.2013, 16:18

Forum Jump:


Users browsing this thread: 1 Guest(s)