Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - Internal error: func 281In C mode, compiling a code with a non-closed function body besides an ordinary error produces Internal error: func 281 (was func 279 in previous versions of dmc), thus preventing the compiler from seeing the rest of the code. The function must have some arguments to make this happen. void f(int n) /* Neither void f(void) nor compiling this as ** C++ code produces Internal error: func 281. */ { void g(void) { a bunch of code with possible errors follows } Best regards, Marcin Mar 09 2005
|