Operating System - Linux
1828074 Members
3904 Online
109974 Solutions
New Discussion

Re: aCC error "Too many nested classes"

 
Abdessattar Sassi
New Member

aCC error "Too many nested classes"

While compiling the SPIRIT parser frameowrk examples with aCC 3.39 I got this error:
Error 215: exact pos... #Too many nested classes!
aCC: error while handling error 445.

What is the limit on the number of nested classes with aCC?
Is there a way to increase that limit?

Thanks.
1 REPLY 1
Dennis Handly
Acclaimed Contributor

Re: aCC error "Too many nested classes"

The maximum size of the scope stack is 1024. This includes things like {} blocks.

Have you made a mistake and forgotten the ";" at the end of a class?